2014-12-24 03:04:10 +01:00
|
|
|
// 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.
|
2014-12-17 09:10:38 +01:00
|
|
|
|
2014-12-10 17:59:38 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-12-10 19:50:35 +01:00
|
|
|
"fmt"
|
2015-01-08 18:33:26 +01:00
|
|
|
"image"
|
2014-12-14 17:45:41 +01:00
|
|
|
"image/color"
|
2014-12-10 17:59:38 +01:00
|
|
|
"log"
|
2014-12-14 17:45:41 +01:00
|
|
|
"math"
|
2016-02-15 17:13:04 +01:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
2014-12-10 17:59:38 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
screenWidth = 320
|
|
|
|
screenHeight = 240
|
|
|
|
)
|
|
|
|
|
2014-12-22 18:43:26 +01:00
|
|
|
var (
|
2015-01-08 18:33:26 +01:00
|
|
|
count int
|
|
|
|
brushImage *ebiten.Image
|
|
|
|
canvasImage *ebiten.Image
|
2014-12-22 18:43:26 +01:00
|
|
|
)
|
2014-12-10 17:59:38 +01:00
|
|
|
|
2015-01-06 20:27:57 +01:00
|
|
|
func update(screen *ebiten.Image) error {
|
2014-12-14 17:45:41 +01:00
|
|
|
if ebiten.IsMouseButtonPressed(ebiten.MouseButtonLeft) {
|
2014-12-22 18:43:26 +01:00
|
|
|
count++
|
2014-12-17 13:49:28 +01:00
|
|
|
}
|
2014-12-17 12:21:27 +01:00
|
|
|
|
2014-12-14 15:06:21 +01:00
|
|
|
mx, my := ebiten.CursorPosition()
|
|
|
|
|
|
|
|
if ebiten.IsMouseButtonPressed(ebiten.MouseButtonLeft) {
|
2015-01-05 02:30:33 +01:00
|
|
|
op := &ebiten.DrawImageOptions{}
|
|
|
|
op.GeoM.Translate(float64(mx), float64(my))
|
2016-03-04 16:57:14 +01:00
|
|
|
op.ColorM.Scale(1.0, 0.50, 0.125, 1.0)
|
2014-12-22 18:43:26 +01:00
|
|
|
theta := 2.0 * math.Pi * float64(count%60) / 60.0
|
2016-02-06 15:56:02 +01:00
|
|
|
op.ColorM.RotateHue(theta)
|
2015-01-08 18:33:26 +01:00
|
|
|
if err := canvasImage.DrawImage(brushImage, op); err != nil {
|
2015-01-06 15:41:03 +01:00
|
|
|
return err
|
|
|
|
}
|
2014-12-14 15:06:21 +01:00
|
|
|
}
|
|
|
|
|
2015-01-08 18:33:26 +01:00
|
|
|
if err := screen.DrawImage(canvasImage, nil); err != nil {
|
2015-01-06 15:41:03 +01:00
|
|
|
return err
|
|
|
|
}
|
2014-12-10 19:50:35 +01:00
|
|
|
|
2015-01-06 15:41:03 +01:00
|
|
|
if err := ebitenutil.DebugPrint(screen, fmt.Sprintf("(%d, %d)", mx, my)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-12-10 17:59:38 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2014-12-17 12:21:27 +01:00
|
|
|
var err error
|
2015-01-08 18:33:26 +01:00
|
|
|
const a0, a1, a2 = 0x40, 0xc0, 0xff
|
|
|
|
pixels := []uint8{
|
|
|
|
a0, a1, a1, a0,
|
|
|
|
a1, a2, a2, a1,
|
|
|
|
a1, a2, a2, a1,
|
|
|
|
a0, a1, a1, a0,
|
|
|
|
}
|
|
|
|
brushImage, err = ebiten.NewImageFromImage(&image.Alpha{
|
|
|
|
Pix: pixels,
|
|
|
|
Stride: 4,
|
|
|
|
Rect: image.Rect(0, 0, 4, 4),
|
|
|
|
}, ebiten.FilterNearest)
|
2014-12-17 12:21:27 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2014-12-22 18:43:26 +01:00
|
|
|
|
2015-01-08 18:33:26 +01:00
|
|
|
canvasImage, err = ebiten.NewImage(screenWidth, screenHeight, ebiten.FilterNearest)
|
2014-12-17 12:21:27 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2015-01-08 18:33:26 +01:00
|
|
|
canvasImage.Fill(color.White)
|
2014-12-22 18:43:26 +01:00
|
|
|
|
2015-01-06 20:27:57 +01:00
|
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Paint (Ebiten Demo)"); err != nil {
|
2014-12-10 17:59:38 +01:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|