ebiten/examples/infinitescroll/main.go

112 lines
2.5 KiB
Go
Raw Normal View History

// Copyright 2016 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.
2021-06-24 14:49:37 +02:00
//go:build example
2020-10-06 17:45:54 +02:00
// +build example
package main
import (
"bytes"
"fmt"
"image"
_ "image/png"
"log"
2020-10-03 19:35:13 +02:00
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
"github.com/hajimehoshi/ebiten/v2/examples/resources/images"
)
const (
screenWidth = 320
screenHeight = 240
)
var (
2018-01-28 16:05:12 +01:00
bgImage *ebiten.Image
)
func init() {
// Decode an image from the image file's byte slice.
// Now the byte slice is generated with //go:generate for Go 1.15 or older.
2021-09-20 08:16:09 +02:00
// If you use Go 1.16 or newer, it is strongly recommended to use //go:embed to embed the image file.
// See https://pkg.go.dev/embed for more details.
img, _, err := image.Decode(bytes.NewReader(images.Tile_png))
2018-01-28 16:05:12 +01:00
if err != nil {
log.Fatal(err)
}
bgImage = ebiten.NewImageFromImage(img)
2018-01-28 16:05:12 +01:00
}
type viewport struct {
x16 int
y16 int
}
func (p *viewport) Move() {
w, h := bgImage.Size()
2018-01-28 16:05:12 +01:00
maxX16 := w * 16
maxY16 := h * 16
p.x16 += w / 32
p.y16 += h / 32
2018-01-28 16:05:12 +01:00
p.x16 %= maxX16
p.y16 %= maxY16
}
func (p *viewport) Position() (int, int) {
return p.x16, p.y16
}
2020-05-09 22:34:06 +02:00
type Game struct {
viewport viewport
}
2018-01-28 16:05:12 +01:00
func (g *Game) Update() error {
2020-05-09 22:34:06 +02:00
g.viewport.Move()
return nil
}
2020-05-09 22:34:06 +02:00
func (g *Game) Draw(screen *ebiten.Image) {
x16, y16 := g.viewport.Position()
2018-01-28 16:05:12 +01:00
offsetX, offsetY := float64(-x16)/16, float64(-y16)/16
2018-01-28 16:05:12 +01:00
// Draw bgImage on the screen repeatedly.
const repeat = 3
w, h := bgImage.Size()
for j := 0; j < repeat; j++ {
for i := 0; i < repeat; i++ {
op := &ebiten.DrawImageOptions{}
op.GeoM.Translate(float64(w*i), float64(h*j))
2018-01-28 16:05:12 +01:00
op.GeoM.Translate(offsetX, offsetY)
screen.DrawImage(bgImage, op)
}
}
ebitenutil.DebugPrint(screen, fmt.Sprintf("TPS: %0.2f", ebiten.CurrentTPS()))
2020-05-09 22:34:06 +02:00
}
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
return screenWidth, screenHeight
2018-01-28 16:05:12 +01:00
}
func main() {
2020-05-09 22:34:06 +02:00
ebiten.SetWindowSize(screenWidth*2, screenHeight*2)
ebiten.SetWindowTitle("Infinite Scroll (Ebiten Demo)")
if err := ebiten.RunGame(&Game{}); err != nil {
log.Fatal(err)
}
}