mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
295 lines
7.0 KiB
HTML
295 lines
7.0 KiB
HTML
<!DOCTYPE html>
|
|
<!--Copyright 2014 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.-->
|
|
<link rel="shortcut icon" href="./favicon.png" type="image/png" >
|
|
<link rel="icon" href="./favicon.png" type="image/png" >
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
table.examples td {
|
|
vertical-align: top;
|
|
}
|
|
table.examples td.code {
|
|
border-color: #999;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
}
|
|
table.examples td.code pre {
|
|
height: 240px;
|
|
overflow: auto;
|
|
}
|
|
|
|
</style>
|
|
<h1>Ebiten (海老天) v1.0.0-alpha</h1>
|
|
<ul>
|
|
<li>A simple SNES-like 2D game library in Go</li>
|
|
<li>Works on
|
|
<ul>
|
|
<li>Mac OS X</li>
|
|
<li>Linux (maybe)</li>
|
|
<li>Windows (possibly)</li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="http://godoc.org/github.com/hajimehoshi/ebiten">API Docs</a></li>
|
|
<li><a href="http://github.com/hajimehoshi/ebiten">Source Code</a></li>
|
|
</ul>
|
|
|
|
<h2>Features</h2>
|
|
<ul>
|
|
<li>2D Graphics</li>
|
|
<li>Input (Mouse, Keyboard)</li>
|
|
</ul>
|
|
|
|
<h2>Example</h2>
|
|
<table class="examples">
|
|
|
|
<tr>
|
|
<td class="code"><pre><code>// <b>hue</b>
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/hajimehoshi/ebiten"
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
|
_ "image/jpeg"
|
|
"log"
|
|
"math"
|
|
)
|
|
|
|
const (
|
|
screenWidth = 320
|
|
screenHeight = 240
|
|
)
|
|
|
|
var (
|
|
count int
|
|
gophersImage *ebiten.Image
|
|
)
|
|
|
|
func update(screen *ebiten.Image) error {
|
|
count++
|
|
w, h := gophersImage.Size()
|
|
geo := ebiten.TranslateGeo(float64(screenWidth-w)/2, float64(screenHeight-h)/2)
|
|
clr := ebiten.RotateHue(float64(count%360) * 2 * math.Pi / 360)
|
|
if err := screen.DrawImage(gophersImage, &ebiten.DrawImageOptions{
|
|
GeoM: geo,
|
|
ColorM: clr,
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
var err error
|
|
gophersImage, _, err = ebitenutil.NewImageFromFile("images/gophers.jpg", ebiten.FilterNearest)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Image (Ebiten Demo)"); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
</code></pre></td>
|
|
<td><img src="hue.gif" width="320" height="240"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="code"><pre><code>// <b>mosaic</b>
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/hajimehoshi/ebiten"
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
|
_ "image/jpeg"
|
|
"log"
|
|
)
|
|
|
|
const (
|
|
screenWidth = 320
|
|
screenHeight = 240
|
|
)
|
|
|
|
const mosaicRatio = 16
|
|
|
|
var (
|
|
gophersImage *ebiten.Image
|
|
gophersRenderTarget *ebiten.Image
|
|
)
|
|
|
|
func update(screen *ebiten.Image) error {
|
|
gophersRenderTarget.DrawImage(gophersImage, &ebiten.DrawImageOptions{
|
|
GeoM: ebiten.ScaleGeo(1.0/mosaicRatio, 1.0/mosaicRatio),
|
|
})
|
|
screen.DrawImage(gophersRenderTarget, &ebiten.DrawImageOptions{
|
|
GeoM: ebiten.ScaleGeo(mosaicRatio, mosaicRatio),
|
|
})
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
var err error
|
|
gophersImage, _, err = ebitenutil.NewImageFromFile("images/gophers.jpg", ebiten.FilterNearest)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
w, h := gophersImage.Size()
|
|
gophersRenderTarget, err = ebiten.NewImage(w/mosaicRatio, h/mosaicRatio, ebiten.FilterNearest)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Mosaic (Ebiten Demo)"); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
</code></pre></td>
|
|
<td><img src="mosaic.gif" width="320" height="240"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="code"><pre><code>// <b>perspective</b>
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/hajimehoshi/ebiten"
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
|
"image"
|
|
_ "image/jpeg"
|
|
"log"
|
|
)
|
|
|
|
const (
|
|
screenWidth = 320
|
|
screenHeight = 240
|
|
)
|
|
|
|
var (
|
|
gophersImage *ebiten.Image
|
|
)
|
|
|
|
func update(screen *ebiten.Image) error {
|
|
parts := []ebiten.ImagePart{}
|
|
w, h := gophersImage.Size()
|
|
for i := 0; i < h; i++ {
|
|
width := w + i*3/4
|
|
x := ((h - i) * 3 / 4) / 2
|
|
parts = append(parts, ebiten.ImagePart{
|
|
Dst: image.Rect(x, i, x+width, i+1),
|
|
Src: image.Rect(0, i, w, i+1),
|
|
})
|
|
}
|
|
maxWidth := float64(w) + float64(h)*0.75
|
|
geo := ebiten.TranslateGeo(-maxWidth/2, -float64(h)/2)
|
|
geo.Concat(ebiten.TranslateGeo(screenWidth/2, screenHeight/2))
|
|
screen.DrawImage(gophersImage, &ebiten.DrawImageOptions{
|
|
Parts: parts,
|
|
GeoM: geo,
|
|
})
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
var err error
|
|
gophersImage, _, err = ebitenutil.NewImageFromFile("images/gophers.jpg", ebiten.FilterNearest)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Perspective (Ebiten Demo)"); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
</code></pre></td>
|
|
<td><img src="perspective.gif" width="320" height="240"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="code"><pre><code>// <b>rotate</b>
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/hajimehoshi/ebiten"
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
|
_ "image/jpeg"
|
|
"log"
|
|
"math"
|
|
)
|
|
|
|
const (
|
|
screenWidth = 320
|
|
screenHeight = 240
|
|
)
|
|
|
|
var (
|
|
count int
|
|
gophersImage *ebiten.Image
|
|
)
|
|
|
|
func update(screen *ebiten.Image) error {
|
|
count++
|
|
w, h := gophersImage.Size()
|
|
geo := ebiten.TranslateGeo(-float64(w)/2, -float64(h)/2)
|
|
geo.Concat(ebiten.RotateGeo(float64(count%720) * 2 * math.Pi / 720))
|
|
geo.Concat(ebiten.TranslateGeo(screenWidth/2, screenHeight/2))
|
|
if err := screen.DrawImage(gophersImage, &ebiten.DrawImageOptions{
|
|
GeoM: geo,
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
var err error
|
|
gophersImage, _, err = ebitenutil.NewImageFromFile("images/gophers.jpg", ebiten.FilterNearest)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Image (Ebiten Demo)"); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
</code></pre></td>
|
|
<td><img src="rotate.gif" width="320" height="240"></td>
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<h2>Install on Mac OS X</h2>
|
|
<pre><code>:; brew install glew
|
|
:; brew install glfw3 # or homebrew/versions/glfw3
|
|
:; go get -u github.com/hajimehoshi/ebiten</code></pre>
|
|
|
|
<h2>Execute the example</h2>
|
|
<pre><code>:; cd $GOHOME/src/github.com/hajimehoshi/ebiten/example
|
|
:; go run rotate/main.go</code></pre>
|
|
|
|
<h2>License</h2>
|
|
<pre><code>Copyright 2014 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.</code></pre>
|