2016-03-03 17:35:03 +01:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2016-08-25 17:40:39 +02:00
|
|
|
// +build example
|
|
|
|
|
2016-03-03 17:35:03 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-03-14 17:16:41 +01:00
|
|
|
"bytes"
|
2016-03-03 17:35:03 +01:00
|
|
|
"fmt"
|
2018-03-14 17:16:41 +01:00
|
|
|
"image"
|
2016-03-03 17:35:03 +01:00
|
|
|
_ "image/jpeg"
|
|
|
|
"log"
|
|
|
|
"math"
|
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
2018-03-14 17:16:41 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/examples/resources/images"
|
2016-03-03 17:35:03 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
screenWidth = 320
|
|
|
|
screenHeight = 240
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2018-01-28 14:39:54 +01:00
|
|
|
hue128 = 0
|
|
|
|
saturation128 = 128
|
|
|
|
value128 = 128
|
|
|
|
|
|
|
|
inverted = false
|
2017-08-20 18:56:50 +02:00
|
|
|
|
|
|
|
prevPressedI = false
|
|
|
|
gophersImage *ebiten.Image
|
2016-03-03 17:35:03 +01:00
|
|
|
)
|
|
|
|
|
2018-01-28 14:39:54 +01:00
|
|
|
// clamp clamps v to the range [min, max].
|
2016-03-03 17:35:03 +01:00
|
|
|
func clamp(v, min, max int) int {
|
|
|
|
if min > max {
|
|
|
|
panic("min must <= max")
|
|
|
|
}
|
|
|
|
if v < min {
|
|
|
|
return min
|
|
|
|
}
|
|
|
|
if max < v {
|
|
|
|
return max
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
func update(screen *ebiten.Image) error {
|
2018-01-28 14:39:54 +01:00
|
|
|
// Adjust HSV values along with the user's input.
|
2016-03-03 17:35:03 +01:00
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyQ) {
|
2018-01-28 14:39:54 +01:00
|
|
|
hue128--
|
2016-03-03 17:35:03 +01:00
|
|
|
}
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyW) {
|
2018-01-28 14:39:54 +01:00
|
|
|
hue128++
|
2016-03-03 17:35:03 +01:00
|
|
|
}
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyA) {
|
2018-01-28 14:39:54 +01:00
|
|
|
saturation128--
|
2016-03-03 17:35:03 +01:00
|
|
|
}
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyS) {
|
2018-01-28 14:39:54 +01:00
|
|
|
saturation128++
|
2016-03-03 17:35:03 +01:00
|
|
|
}
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyZ) {
|
2018-01-28 14:39:54 +01:00
|
|
|
value128--
|
2016-03-03 17:35:03 +01:00
|
|
|
}
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyX) {
|
2018-01-28 14:39:54 +01:00
|
|
|
value128++
|
2016-03-03 17:35:03 +01:00
|
|
|
}
|
2017-08-20 18:56:50 +02:00
|
|
|
|
2018-01-28 14:39:54 +01:00
|
|
|
hue128 = clamp(hue128, -256, 256)
|
|
|
|
saturation128 = clamp(saturation128, 0, 256)
|
|
|
|
value128 = clamp(value128, 0, 256)
|
|
|
|
|
2017-08-20 18:56:50 +02:00
|
|
|
pressedI := ebiten.IsKeyPressed(ebiten.KeyI)
|
|
|
|
if pressedI && !prevPressedI {
|
|
|
|
inverted = !inverted
|
|
|
|
}
|
|
|
|
prevPressedI = pressedI
|
|
|
|
|
2017-05-16 03:35:58 +02:00
|
|
|
if ebiten.IsRunningSlowly() {
|
|
|
|
return nil
|
|
|
|
}
|
2016-03-03 17:35:03 +01:00
|
|
|
|
2018-01-28 14:39:54 +01:00
|
|
|
// Center the image on the screen.
|
2016-03-03 17:35:03 +01:00
|
|
|
w, h := gophersImage.Size()
|
|
|
|
op := &ebiten.DrawImageOptions{}
|
|
|
|
op.GeoM.Translate(float64(screenWidth-w)/2, float64(screenHeight-h)/2)
|
2017-08-20 18:56:50 +02:00
|
|
|
|
2018-01-28 14:39:54 +01:00
|
|
|
// Change HSV.
|
|
|
|
hue := float64(hue128) * 2 * math.Pi / 128
|
|
|
|
saturation := float64(saturation128) / 128
|
|
|
|
value := float64(value128) / 128
|
2016-03-03 17:35:03 +01:00
|
|
|
op.ColorM.ChangeHSV(hue, saturation, value)
|
2018-01-28 14:39:54 +01:00
|
|
|
|
|
|
|
// Invert the color.
|
2017-08-20 18:56:50 +02:00
|
|
|
if inverted {
|
|
|
|
op.ColorM.Scale(-1, -1, -1, 1)
|
|
|
|
op.ColorM.Translate(1, 1, 1, 0)
|
|
|
|
}
|
|
|
|
|
2017-03-04 15:00:19 +01:00
|
|
|
screen.DrawImage(gophersImage, op)
|
2016-03-03 17:35:03 +01:00
|
|
|
|
2018-01-28 14:39:54 +01:00
|
|
|
// Draw the text of the current status.
|
2017-08-20 18:56:50 +02:00
|
|
|
msgInverted := "false"
|
|
|
|
if inverted {
|
|
|
|
msgInverted = "true"
|
|
|
|
}
|
2016-03-03 17:35:03 +01:00
|
|
|
msg := fmt.Sprintf(`Hue: %0.2f [Q][W]
|
|
|
|
Saturation: %0.2f [A][S]
|
2017-08-20 18:56:50 +02:00
|
|
|
Value: %0.2f [Z][X]
|
|
|
|
Inverted: %s [I]`, hue, saturation, value, msgInverted)
|
2017-03-04 15:00:19 +01:00
|
|
|
ebitenutil.DebugPrint(screen, msg)
|
2016-03-03 17:35:03 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2018-03-14 17:16:41 +01:00
|
|
|
img, _, err := image.Decode(bytes.NewReader(images.Gophers_jpg))
|
2016-03-03 17:35:03 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2018-03-14 17:16:41 +01:00
|
|
|
gophersImage, _ = ebiten.NewImageFromImage(img, ebiten.FilterDefault)
|
|
|
|
|
2016-03-03 17:35:03 +01:00
|
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "HSV (Ebiten Demo)"); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|