2014-12-27 16:26:33 +01:00
<!DOCTYPE html>
2014-12-27 22:18:23 +01:00
{{comment .License}}
2015-01-10 11:18:43 +01:00
< meta name = "description" content = "Ebiten - A simple SNES-like 2D game library in Go" >
< link rel = "shortcut icon" href = "./favicon.png" type = "image/png" >
< link rel = "icon" href = "./favicon.png" type = "image/png" >
2014-12-28 09:14:56 +01:00
< title > Ebiten - A simple SNES-like 2D game library in Go< / title >
2016-08-26 16:33:36 +02:00
< link rel = "stylesheet" href = "./style.css" >
2016-04-21 19:31:26 +02:00
< a href = "https://github.com/hajimehoshi/ebiten" > < img style = "position: absolute; top: 0; right: 0; border: 0;" src = "https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt = "Fork me on GitHub" data-canonical-src = "https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" > < / a >
2014-12-29 15:16:02 +01:00
< h1 > Ebiten (海老天)< / h1 >
2016-04-21 19:31:26 +02:00
< p > Stable version: v{{.StableVersion}} / Development version: v{{.DevVersion}}< / p >
2014-12-27 22:18:23 +01:00
< ul >
2014-12-28 09:09:50 +01:00
< li > A simple SNES-like 2D game library in Go< / li >
2014-12-27 22:18:23 +01:00
< li > Works on
< ul >
2016-08-01 18:29:07 +02:00
< li > < a href = "https://github.com/hajimehoshi/ebiten/wiki/Web-Browsers" > Web browsers< / a > (powered by < a href = "http://gopherjs.org/" > GopherJS< / a > )
2015-01-07 17:32:37 +01:00
< ul >
2016-04-21 16:58:33 +02:00
< li > Supported browsers: Chrome and Firefox on desktops< / li >
2015-01-07 17:32:37 +01:00
< / ul >
< / li >
2016-08-01 18:29:07 +02:00
< li > < a href = "https://github.com/hajimehoshi/ebiten/wiki/Windows" > Windows< / a > < / li >
< li > < a href = "https://github.com/hajimehoshi/ebiten/wiki/Mac-OS-X" > Mac OS X< / a > < / li >
< li > < a href = "https://github.com/hajimehoshi/ebiten/wiki/Linux" > Linux< / a > < / li >
< li > < a href = "https://github.com/hajimehoshi/ebiten/wiki/Android" > Android< / a > < / li >
< li > < a href = "https://github.com/hajimehoshi/ebiten/wiki/iOS" > iOS< / a > < / li >
2014-12-27 22:18:23 +01:00
< / ul >
< / li >
2016-04-21 18:16:58 +02:00
< li > < a href = "http://godoc.org/github.com/hajimehoshi/ebiten" > < img src = "https://godoc.org/github.com/hajimehoshi/ebiten?status.svg" alt = "GoDoc Reference" > < / a > < / li >
2016-07-07 18:15:53 +02:00
< li > < a href = "https://github.com/hajimehoshi/ebiten/wiki" > Wiki< / a >
2014-12-27 22:18:23 +01:00
< / ul >
< h2 > Features< / h2 >
< ul >
< li > 2D Graphics< / li >
2015-01-12 10:34:02 +01:00
< li > Input (Mouse, Keyboard, Gamepad)< / li >
2016-04-21 18:16:58 +02:00
< li > Audio (Ogg/Vorbis, WAV, and PCM)< / li >
2014-12-27 22:18:23 +01:00
< / ul >
< h2 > Example< / h2 >
2015-01-08 15:45:30 +01:00
< p >
2016-02-28 06:23:46 +01:00
{{range .Examples -}}
2016-02-10 19:07:14 +01:00
< a href = "examples/{{.Name}}.html" > < img src = "images/examples/{{.Name}}.png" width = "{{.ThumbWidth}}" height = "{{.ThumbHeight}}" alt = "Ebiten example: {{.Name}}" class = "example" > < / a >
2016-02-28 06:23:46 +01:00
{{- end}}
2015-01-08 15:45:30 +01:00
< / p >
2014-12-27 22:18:23 +01:00
2016-08-25 18:21:01 +02:00
< h2 > Execute the examples< / h2 >
2016-08-01 18:29:07 +02:00
< pre > < code > :; go get github.com/hajimehoshi/ebiten
:; cd $GOPATH/src/github.com/hajimehoshi/ebiten/examples
2016-08-25 18:21:01 +02:00
:; go run -tags example rotate/main.go< / code > < / pre >
< p > Note that you need to specify < code > example< / code > tag.< / p >
2014-12-27 22:18:23 +01:00
2016-06-23 05:15:34 +02:00
< h2 > Getting Started< / h2 >
< p > Let's build a simple "Hello world!" game to get started with Ebiten.
First create a new directory (< code > mkdir hello_world< / code > ), and change
into it (< code > cd hello_world< / code > ). Type the following code into
the < code > main.go< / code > file:< / p >
< pre > < code > package main
import (
"github.com/hajimehoshi/ebiten"
"github.com/hajimehoshi/ebiten/ebitenutil"
)
func update(screen *ebiten.Image) error {
ebitenutil.DebugPrint(screen, "Hello world!")
return nil
}
func main() {
ebiten.Run(update, 320, 240, 2, "Hello world!")
}
< / code > < / pre >
< p > Run the < code > go run< / code > command to start the
game. There you have it, your first Ebiten game!< / p >
2015-01-05 17:56:58 +01:00
< h2 > Change Log< / h2 >
2016-06-26 18:02:50 +02:00
< p > See < a href = "https://github.com/hajimehoshi/ebiten/releases" > GitHub releases page< / a > .< / p >
2015-01-05 15:55:25 +01:00
2014-12-27 22:18:23 +01:00
< h2 > License< / h2 >
2014-12-31 19:02:53 +01:00
< h3 > Ebiten< / h3 >
< pre > {{.License}}< / pre >
< h3 > Go Gopher photograph< / h3 >
< p > < a href = "http://blog.golang.org/go-programming-language-turns-two" > The original photograph of Go gophers by Chris Nokleberg< / a > is licensed under the Creative Commons 3.0 Attributions license.< / p >
2015-01-08 15:45:30 +01:00
< footer > {{.Copyright}}< / footer >