mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
1b816eb249
Updates #1380
108 lines
2.7 KiB
Go
108 lines
2.7 KiB
Go
// 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.
|
|
|
|
package blocks
|
|
|
|
import (
|
|
"bytes"
|
|
"image"
|
|
"image/color"
|
|
_ "image/png"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2"
|
|
rblocks "github.com/hajimehoshi/ebiten/v2/examples/resources/images/blocks"
|
|
"github.com/hajimehoshi/ebiten/v2/inpututil"
|
|
)
|
|
|
|
var imageBackground *ebiten.Image
|
|
|
|
func init() {
|
|
img, _, err := image.Decode(bytes.NewReader(rblocks.Background_png))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
imageBackground = ebiten.NewImageFromImage(img)
|
|
}
|
|
|
|
type TitleScene struct {
|
|
count int
|
|
}
|
|
|
|
func anyGamepadAbstractButtonPressed(i *Input) bool {
|
|
if !i.gamepadConfig.IsInitialized() {
|
|
return false
|
|
}
|
|
|
|
for _, b := range virtualGamepadButtons {
|
|
if i.gamepadConfig.IsButtonPressed(b) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (s *TitleScene) Update(state *GameState) error {
|
|
s.count++
|
|
if inpututil.IsKeyJustPressed(ebiten.KeySpace) {
|
|
state.SceneManager.GoTo(NewGameScene())
|
|
return nil
|
|
}
|
|
|
|
if anyGamepadAbstractButtonPressed(state.Input) {
|
|
state.SceneManager.GoTo(NewGameScene())
|
|
return nil
|
|
}
|
|
|
|
// If 'abstract' gamepad buttons are not set and any gamepad buttons are pressed,
|
|
// go to the gamepad configuration scene.
|
|
if id := state.Input.GamepadIDButtonPressed(); id >= 0 {
|
|
g := &GamepadScene{}
|
|
g.gamepadID = id
|
|
state.SceneManager.GoTo(g)
|
|
return nil
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *TitleScene) Draw(r *ebiten.Image) {
|
|
s.drawTitleBackground(r, s.count)
|
|
drawLogo(r, "BLOCKS")
|
|
|
|
message := "PRESS SPACE TO START"
|
|
x := 0
|
|
y := ScreenHeight - 48
|
|
drawTextWithShadowCenter(r, message, x, y, 1, color.NRGBA{0x80, 0, 0, 0xff}, ScreenWidth)
|
|
}
|
|
|
|
func (s *TitleScene) drawTitleBackground(r *ebiten.Image, c int) {
|
|
w, h := imageBackground.Size()
|
|
op := &ebiten.DrawImageOptions{}
|
|
for i := 0; i < (ScreenWidth/w+1)*(ScreenHeight/h+2); i++ {
|
|
op.GeoM.Reset()
|
|
dx := -(c / 4) % w
|
|
dy := (c / 4) % h
|
|
dstX := (i%(ScreenWidth/w+1))*w + dx
|
|
dstY := (i/(ScreenWidth/w+1)-1)*h + dy
|
|
op.GeoM.Translate(float64(dstX), float64(dstY))
|
|
r.DrawImage(imageBackground, op)
|
|
}
|
|
}
|
|
|
|
func drawLogo(r *ebiten.Image, str string) {
|
|
const scale = 4
|
|
x := 0
|
|
y := 32
|
|
drawTextWithShadowCenter(r, str, x, y, scale, color.NRGBA{0x00, 0x00, 0x80, 0xff}, ScreenWidth)
|
|
}
|