| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
JosHQEA
9年前发布

Ebiten – 一个简单类似SNES的2D游戏Go库

来自: http://hajimehoshi.github.io/ebiten/

Ebiten - A simple SNES-like 2D game library in Go

Ebiten (海老天)

v1.1.0

  • A simple SNES-like 2D game library in Go
  • Works on
    • Web browsers (powered by GopherJS )
      • Supported browsers: Chrome, Firefox, Safari on desktops
    • Mac OS X
    • Linux (maybe)
    • Windows (possibly)
  • API Docs
  • GitHub project page (Development version: v1.2.0-alpha)

Features

  • 2D Graphics
  • Input (Mouse, Keyboard)

Example

Install on Mac OS X

:; brew install glew  :; brew install glfw3 # or homebrew/versions/glfw3  :; go get github.com/hajimehoshi/ebiten

If you want to run your game on a web browser, execute this:

:; go get github.com/gopherjs/gopherjs  :; go get github.com/gopherjs/webgl

Execute the example

:; cd $GOPATH/src/github.com/hajimehoshi/ebiten/example  :; go run rotate/main.go

Run your game on a desktop

Just execute your Go program. That's it!

Run your game on a web browser

Compile your game with GopherJS :

:; gopherjs build -o yourgame.js path/to/yourgame

Then, open the below HTML on your HTTP server:

<!DOCTYPE html>  <script src="yourgame.js"></script>

NOTE: file:// URL may not work with Ebiten. Execute your game on a HTTP server.

Change Log

2015-01-25

  • v1.1.0 released.
    • Fixed some bugs.

2015-01-10

  • v1.1.0-rc1 released.
    • Support for web browsers: Ebiten now includes support for web browsers with GopherJS.
    • Some API has changed:
      • ImagePart is deprecated. Use ImageParts interface instead.
      • ColorM.Element and GeoM.Element's recievers changed from structs to pointers.
      • A lot of keyboard keys have been added. KeyMax and MouseButtonMax were removed.
    • The game is stopped when the window is not active.

2015-01-04

  • v1.0.0 released.
    • Nothing has changed from v1.0.0-rc1.

2014-12-29

  • v1.0.0-rc1 released.

License

Ebiten

Copyright 2015 Hajime Hoshi    Licensed under the Apache License, Version 2.0 (the "License");  you may not use this file except in compliance with the License.  You may obtain a copy of the License at        http://www.apache.org/licenses/LICENSE-2.0    Unless required by applicable law or agreed to in writing, software  distributed under the License is distributed on an "AS IS" BASIS,  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and  limitations under the License.

Go Gopher photograph

The original photograph of Go gophers by Chris Nokleberg is licensed under the Creative Commons 3.0 Attributions license.

 本文由用户 JosHQEA 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1455372796745.html
GopherJS 游戏开发