mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
85 lines
1.9 KiB
Go
85 lines
1.9 KiB
Go
// Copyright 2015 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 main
|
|
|
|
import (
|
|
"github.com/hajimehoshi/ebiten"
|
|
"image"
|
|
"image/color"
|
|
"log"
|
|
"math/rand"
|
|
)
|
|
|
|
const (
|
|
screenWidth = 320
|
|
screenHeight = 240
|
|
)
|
|
|
|
var rectsToDraw = make([]image.Rectangle, 100)
|
|
var colors = make([]color.NRGBA, 100)
|
|
|
|
func min(a, b int) int {
|
|
if a < b {
|
|
return a
|
|
}
|
|
return b
|
|
}
|
|
|
|
func max(a, b int) int {
|
|
if a < b {
|
|
return b
|
|
}
|
|
return a
|
|
}
|
|
|
|
func init() {
|
|
for i, _ := range rectsToDraw {
|
|
x0, x1 := rand.Intn(screenWidth), rand.Intn(screenWidth)
|
|
y0, y1 := rand.Intn(screenHeight), rand.Intn(screenHeight)
|
|
rectsToDraw[i] = image.Rect(min(x0, x1), min(y0, y1), max(x0, x1), max(y0, y1))
|
|
r, g, b, a := uint8(rand.Intn(0xff)), uint8(rand.Intn(0xff)), uint8(rand.Intn(0xff)), uint8(rand.Intn(0xff))
|
|
colors[i] = color.NRGBA{r, g, b, a}
|
|
}
|
|
}
|
|
|
|
type rects struct {
|
|
rects []image.Rectangle
|
|
colors []color.NRGBA
|
|
}
|
|
|
|
func (r rects) Len() int {
|
|
return len(r.rects)
|
|
}
|
|
|
|
func (r rects) Points(i int) (x0, y0, x1, y1 int) {
|
|
rect := &r.rects[i]
|
|
return rect.Min.X, rect.Min.Y, rect.Max.X, rect.Max.Y
|
|
}
|
|
|
|
func (r rects) Color(i int) color.Color {
|
|
return r.colors[i]
|
|
}
|
|
|
|
func update(screen *ebiten.Image) error {
|
|
screen.DrawRects(&rects{rectsToDraw, colors})
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Shapes (Ebiten Demo)"); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|