diff --git a/_docs/gen.go b/_docs/gen.go index b454d5a25..0c453a08b 100644 --- a/_docs/gen.go +++ b/_docs/gen.go @@ -23,11 +23,11 @@ import ( "log" "os" "path/filepath" + "regexp" ) const ( outputPath = "public/index.html" - readMePath = "../readme.md" templatePath = "index_tmpl.html" ) @@ -70,6 +70,21 @@ func safeHTML(text string) template.HTML { return template.HTML(text) } +type example struct { + Name string +} + +func (e *example) Source() string { + path := filepath.Join(os.Getenv("GOPATH"), "src", "github.com", "hajimehoshi", "ebiten", "example", e.Name, "main.go") + b, err := ioutil.ReadFile(path) + if err != nil { + panic(err) + } + + str := regexp.MustCompile("(?s)^.*?\n\n").ReplaceAllString(string(b), "") + return str +} + func main() { f, err := os.Create(outputPath) if err != nil { @@ -77,12 +92,6 @@ func main() { } defer f.Close() - // Parse readme.md - readme, err := parseMarkdown(readMePath) - if err != nil { - log.Fatal(err) - } - funcs := template.FuncMap{ "comment": comment, "safeHTML": safeHTML, @@ -92,9 +101,14 @@ func main() { if err != nil { panic(err) } - data := map[string]string{ - "License": license, - "ReadMe": readme, + examples := []example{ + {Name: "mosaic"}, + {Name: "perspective"}, + {Name: "rotate"}, + } + data := map[string]interface{}{ + "License": license, + "Examples": examples, } if err := t.Funcs(funcs).Execute(f, data); err != nil { log.Fatal(err) diff --git a/_docs/index_tmpl.html b/_docs/index_tmpl.html index f6bad5415..7c0a401bd 100644 --- a/_docs/index_tmpl.html +++ b/_docs/index_tmpl.html @@ -1,3 +1,43 @@ -{{ comment .License }} -{{ safeHTML .ReadMe }} +{{comment .License}} +

Ebiten (海老天) v1.0.0-alpha

+ + +

Features

+ + +

Example

+ + {{range .Examples}} + + + + + {{end}} +
{{.Source}}
+ +

Install on Mac OS X

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

Execute the example

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

License

+
{{.License}}
diff --git a/_docs/public/index.html b/_docs/public/index.html index fc38584fd..c8a2c468f 100644 --- a/_docs/public/index.html +++ b/_docs/public/index.html @@ -12,87 +12,224 @@ 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.--> -

-Ebiten (海老天) v1.0.0-alpha

- +

Ebiten (海老天) v1.0.0-alpha

-

-Features

- +

Features

-

-Example

+

Example

+ + + + + + + + + + + + + + + + + +
package main
 
-
    -
  • example/mosaic - Mosaics an image
  • -
  • example/perspective - See an image in a perspective view
  • -
  • example/rotate - Rotates an image
  • -
  • etc.
  • -
+import ( + "github.com/hajimehoshi/ebiten" + "github.com/hajimehoshi/ebiten/ebitenutil" + _ "image/jpeg" + "log" +) -

-Install on Mac OS X

+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) + } +} +
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)
+	}
+}
+
package main
+
+import (
+	"github.com/hajimehoshi/ebiten"
+	"github.com/hajimehoshi/ebiten/ebitenutil"
+	_ "image/jpeg"
+	"log"
+	"math"
+)
+
+const (
+	screenWidth  = 320
+	screenHeight = 240
+)
+
+var (
+	count           int
+	horizontalCount int
+	verticalCount   int
+	gophersImage    *ebiten.Image
+)
+
+func update(screen *ebiten.Image) error {
+	count++
+	if ebiten.IsKeyPressed(ebiten.KeyLeft) {
+		horizontalCount--
+	}
+	if ebiten.IsKeyPressed(ebiten.KeyRight) {
+		horizontalCount++
+	}
+	if ebiten.IsKeyPressed(ebiten.KeyDown) {
+		verticalCount--
+	}
+	if ebiten.IsKeyPressed(ebiten.KeyUp) {
+		verticalCount++
+	}
+
+	w, h := gophersImage.Size()
+	geo := ebiten.TranslateGeo(-float64(w)/2, -float64(h)/2)
+	scaleX := math.Pow(1.05, float64(horizontalCount))
+	scaleY := math.Pow(1.05, float64(verticalCount))
+	geo.Concat(ebiten.ScaleGeo(scaleX, scaleY))
+	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)
+	}
+}
+
+ +

Install on Mac OS X

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

-Execute the example

+:; go get -u github.com/hajimehoshi/ebiten +

Execute the example

:; cd $GOHOME/src/github.com/hajimehoshi/ebiten/example
-:; go run blocks/main.go
-
- -

-Benchmark the example

- -
:; cd $GOHOME/src/github.com/hajimehoshi/ebiten/example
-:; go build -o=example blocks/main.go
-:; ./example -cpuprofile=cpu.out
-:; go tool pprof ./example cpu.out
-
- -

-Versioning

- - - -

-License

+:; go run rotate/main.go +

License

Copyright 2014 Hajime Hoshi
 
-Licensed under the Apache License, Version 2.0 (the "License");
+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,
+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.
-
- +limitations under the License. diff --git a/_docs/public/mosaic.gif b/_docs/public/mosaic.gif new file mode 100644 index 000000000..6e13fe015 Binary files /dev/null and b/_docs/public/mosaic.gif differ diff --git a/_docs/public/perspective.gif b/_docs/public/perspective.gif new file mode 100644 index 000000000..c09f62cce Binary files /dev/null and b/_docs/public/perspective.gif differ diff --git a/_docs/public/rotate.gif b/_docs/public/rotate.gif new file mode 100644 index 000000000..3448cc110 Binary files /dev/null and b/_docs/public/rotate.gif differ diff --git a/readme.md b/readme.md index 31b4b62de..f2521c45d 100644 --- a/readme.md +++ b/readme.md @@ -31,7 +31,7 @@ ``` :; cd $GOHOME/src/github.com/hajimehoshi/ebiten/example -:; go run blocks/main.go +:; go run rotate/main.go ``` ### Benchmark the example