2018-02-05 19:52:22 +01:00
|
|
|
// Copyright 2018 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2018-03-14 17:26:21 +01:00
|
|
|
// +build example jsgo
|
2018-02-05 19:52:22 +01:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-03-14 17:16:41 +01:00
|
|
|
"bytes"
|
2018-02-05 19:52:22 +01:00
|
|
|
"fmt"
|
|
|
|
"image"
|
2018-02-08 16:55:56 +01:00
|
|
|
_ "image/png"
|
2018-02-05 19:52:22 +01:00
|
|
|
"log"
|
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
2018-03-14 17:16:41 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/examples/resources/images"
|
2018-02-05 19:52:22 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
screenWidth = 240
|
|
|
|
screenHeight = 240
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
tileSize = 16
|
|
|
|
tileXNum = 25
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
tilesImage *ebiten.Image
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2018-03-16 04:05:53 +01:00
|
|
|
// Decode image from a byte slice instead of a file so that
|
|
|
|
// this example works in any working directory.
|
|
|
|
// If you want to use a file, there are some options:
|
|
|
|
// 1) Use os.Open and pass the file to the image decoder.
|
|
|
|
// This is a very regular way, but doesn't work on browsers.
|
|
|
|
// 2) Use ebitenutil.OpenFile and pass the file to the image decoder.
|
|
|
|
// This works even on browsers.
|
|
|
|
// 3) Use ebitenutil.NewImageFromFile to create an ebiten.Image directly from a file.
|
|
|
|
// This also works on browsers.
|
2018-03-14 17:16:41 +01:00
|
|
|
img, _, err := image.Decode(bytes.NewReader(images.Tiles_png))
|
2018-02-05 19:52:22 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2018-03-14 17:16:41 +01:00
|
|
|
tilesImage, _ = ebiten.NewImageFromImage(img, ebiten.FilterDefault)
|
2018-02-05 19:52:22 +01:00
|
|
|
}
|
|
|
|
|
2020-06-07 14:36:46 +02:00
|
|
|
type Game struct {
|
|
|
|
layers [][]int
|
|
|
|
}
|
2018-02-05 19:52:22 +01:00
|
|
|
|
2020-06-07 14:36:46 +02:00
|
|
|
func (g *Game) Update(screen *ebiten.Image) error {
|
|
|
|
return nil
|
|
|
|
}
|
2018-02-05 19:52:22 +01:00
|
|
|
|
2020-06-07 14:36:46 +02:00
|
|
|
func (g *Game) Draw(screen *ebiten.Image) {
|
2018-02-05 19:52:22 +01:00
|
|
|
// Draw each tile with each DrawImage call.
|
|
|
|
// As the source images of all DrawImage calls are always same,
|
|
|
|
// this rendering is done very effectively.
|
2020-01-18 20:52:12 +01:00
|
|
|
// For more detail, see https://pkg.go.dev/github.com/hajimehoshi/ebiten#Image.DrawImage
|
2018-02-05 19:52:22 +01:00
|
|
|
const xNum = screenWidth / tileSize
|
2020-06-07 14:36:46 +02:00
|
|
|
for _, l := range g.layers {
|
2018-02-05 19:52:22 +01:00
|
|
|
for i, t := range l {
|
|
|
|
op := &ebiten.DrawImageOptions{}
|
|
|
|
op.GeoM.Translate(float64((i%xNum)*tileSize), float64((i/xNum)*tileSize))
|
|
|
|
|
|
|
|
sx := (t % tileXNum) * tileSize
|
|
|
|
sy := (t / tileXNum) * tileSize
|
2018-10-23 16:27:27 +02:00
|
|
|
screen.DrawImage(tilesImage.SubImage(image.Rect(sx, sy, sx+tileSize, sy+tileSize)).(*ebiten.Image), op)
|
2018-02-05 19:52:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-29 19:27:33 +02:00
|
|
|
ebitenutil.DebugPrint(screen, fmt.Sprintf("TPS: %0.2f", ebiten.CurrentTPS()))
|
2020-06-07 14:36:46 +02:00
|
|
|
}
|
2018-02-05 19:52:22 +01:00
|
|
|
|
2020-06-07 14:36:46 +02:00
|
|
|
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
|
|
|
|
return screenWidth, screenHeight
|
2018-02-05 19:52:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2020-06-07 14:36:46 +02:00
|
|
|
g := &Game{
|
|
|
|
layers: [][]int{
|
|
|
|
{
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
243, 218, 243, 243, 243, 243, 243, 243, 243, 243, 243, 218, 243, 244, 243,
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
243, 243, 244, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 219, 243, 243, 243, 219, 243,
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
243, 218, 243, 243, 243, 243, 243, 243, 243, 243, 243, 244, 243, 243, 243,
|
|
|
|
243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, 243,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 26, 27, 28, 29, 30, 31, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 51, 52, 53, 54, 55, 56, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 76, 77, 78, 79, 80, 81, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 101, 102, 103, 104, 105, 106, 0, 0, 0, 0,
|
|
|
|
|
|
|
|
0, 0, 0, 0, 0, 126, 127, 128, 129, 130, 131, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 303, 303, 245, 242, 303, 303, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 245, 242, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 245, 242, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 245, 242, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 245, 242, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 245, 242, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 245, 242, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 245, 242, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 245, 242, 0, 0, 0, 0, 0, 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
ebiten.SetWindowSize(screenWidth*2, screenHeight*2)
|
|
|
|
ebiten.SetWindowTitle("Tiles (Ebiten Demo)")
|
|
|
|
if err := ebiten.RunGame(g); err != nil {
|
2018-02-05 19:52:22 +01:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|