ebiten/examples/shader/main.go

152 lines
3.4 KiB
Go
Raw Normal View History

// Copyright 2020 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.
// +build example jsgo
package main
import (
2020-06-23 18:41:27 +02:00
"bytes"
"image"
_ "image/jpeg"
"log"
"github.com/hajimehoshi/ebiten"
2020-06-23 18:41:27 +02:00
"github.com/hajimehoshi/ebiten/ebitenutil"
"github.com/hajimehoshi/ebiten/examples/resources/images"
"github.com/hajimehoshi/ebiten/inpututil"
)
const (
screenWidth = 640
screenHeight = 480
)
2020-06-23 18:41:27 +02:00
var gophersImage *ebiten.Image
func init() {
// 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.
img, _, err := image.Decode(bytes.NewReader(images.Gophers_jpg))
if err != nil {
log.Fatal(err)
}
gophersImage, _ = ebiten.NewImageFromImage(img, ebiten.FilterDefault)
}
2020-06-21 18:07:00 +02:00
var shaderSrcs = [][]byte{
default_go,
2020-06-23 18:41:27 +02:00
image_go,
}
type Game struct {
2020-06-21 18:07:00 +02:00
shaders map[int]*ebiten.Shader
idx int
time int
}
func (g *Game) Update(screen *ebiten.Image) error {
2020-06-10 17:29:01 +02:00
g.time++
2020-06-23 18:41:27 +02:00
if inpututil.IsKeyJustPressed(ebiten.KeyDown) {
g.idx++
g.idx %= len(shaderSrcs)
}
if inpututil.IsKeyJustPressed(ebiten.KeyUp) {
g.idx += len(shaderSrcs) - 1
g.idx %= len(shaderSrcs)
}
2020-06-21 18:07:00 +02:00
if g.shaders == nil {
g.shaders = map[int]*ebiten.Shader{}
}
if _, ok := g.shaders[g.idx]; !ok {
s, err := ebiten.NewShader([]byte(shaderSrcs[g.idx]), 1)
if err != nil {
return err
}
2020-06-21 18:07:00 +02:00
g.shaders[g.idx] = s
}
return nil
}
func (g *Game) Draw(screen *ebiten.Image) {
2020-06-21 18:07:00 +02:00
s, ok := g.shaders[g.idx]
if !ok {
return
}
w, h := screen.Size()
vs := []ebiten.Vertex{
{
DstX: 0,
DstY: 0,
2020-06-23 18:41:27 +02:00
SrcX: 0,
SrcY: 0,
},
{
DstX: float32(w),
DstY: 0,
2020-06-23 18:41:27 +02:00
SrcX: float32(w),
SrcY: 0,
},
{
DstX: 0,
DstY: float32(h),
2020-06-23 18:41:27 +02:00
SrcX: 0,
SrcY: float32(h),
},
{
DstX: float32(w),
DstY: float32(h),
2020-06-23 18:41:27 +02:00
SrcX: float32(w),
SrcY: float32(h),
},
}
is := []uint16{0, 1, 2, 1, 2, 3}
2020-06-10 17:29:01 +02:00
2020-06-21 17:47:53 +02:00
cx, cy := ebiten.CursorPosition()
2020-06-10 17:29:01 +02:00
op := &ebiten.DrawTrianglesWithShaderOptions{}
2020-06-23 19:47:51 +02:00
op.Uniforms = []interface{}{
float32(g.time) / 60, // Time
[]float32{float32(cx), float32(cy)}, // Cursor
}
if g.idx != 0 {
op.Images = append(op.Images, gophersImage)
2020-06-10 17:29:01 +02:00
}
2020-06-21 18:07:00 +02:00
screen.DrawTrianglesWithShader(vs, is, s, op)
2020-06-23 18:41:27 +02:00
msg := "Press Up/Down to switch the shader."
ebitenutil.DebugPrint(screen, msg)
}
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
return screenWidth, screenHeight
}
func main() {
ebiten.SetWindowSize(screenWidth, screenHeight)
ebiten.SetWindowTitle("Shader (Ebiten Demo)")
if err := ebiten.RunGame(&Game{}); err != nil {
log.Fatal(err)
}
}