码迷,mamicode.com
首页 > 编程语言 > 详细

把别人的Tcl/Tk代码加入到Go语言里14 游戏7 行星游戏

时间:2015-05-13 14:58:52      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

a 首先打开网页 http://wiki.tcl.tk/13601

b 把网页里提到的第一段tcl/tk代码复制到如下go源代码的init_script字符串常量里

package main

import "github.com/nsf/gothic"

const init_script = `

#把Tcl/Tk源代码复制到这个常量里

`

func main() {

    ir := gothic.NewInterpreter(init_script)

    <-ir.Done

}

c 在LiteIDE里或命令行里go run go代码文件,运行效果如下

小飞机的控制:

  • Left Arrow  - rotate CCW

  • Right Arrow - rotate CW

  • Up Arrow    - Thrust

  • Space空格 - Fire射击

  • Down Arrow  - Hyperspace 随机瞬移(moves ship to a random screen coordinate)

技术分享



把别人的Tcl/Tk代码加入到Go语言里14 游戏7 行星游戏

标签:

原文地址:http://my.oschina.net/u/2315579/blog/414303

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!