2016-04-13 18:26:31 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!--
|
2016-05-14 14:15:27 +02:00
|
|
|
Copyright 2013 Hajime Hoshi
|
2016-04-13 18:26:31 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
|
|
|
<link rel="shortcut icon" href="../favicon.png" type="image/png" >
|
|
|
|
<link rel="icon" href="../favicon.png" type="image/png" >
|
|
|
|
<title>Ebiten example - hsv</title>
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
iframe {
|
|
|
|
border-color: #999;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
pre {
|
|
|
|
background: #eee;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<nav><a href="..">Ebiten</a></nav>
|
|
|
|
|
|
|
|
<h1>Ebiten example - hsv</h1>
|
|
|
|
<iframe src="hsv.content.html" width="640" height="480"></iframe>
|
|
|
|
<pre><code>package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
_ "image/jpeg"
|
|
|
|
"log"
|
|
|
|
"math"
|
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
2016-05-14 14:15:27 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/examples/common"
|
2016-04-13 18:26:31 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
screenWidth = 320
|
|
|
|
screenHeight = 240
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
hueInt = 0
|
|
|
|
saturationInt = 128
|
|
|
|
valueInt = 128
|
|
|
|
gophersImage *ebiten.Image
|
|
|
|
)
|
|
|
|
|
|
|
|
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 {
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyQ) {
|
|
|
|
hueInt--
|
|
|
|
}
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyW) {
|
|
|
|
hueInt++
|
|
|
|
}
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyA) {
|
|
|
|
saturationInt--
|
|
|
|
}
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyS) {
|
|
|
|
saturationInt++
|
|
|
|
}
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyZ) {
|
|
|
|
valueInt--
|
|
|
|
}
|
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyX) {
|
|
|
|
valueInt++
|
|
|
|
}
|
|
|
|
hueInt = clamp(hueInt, -256, 256)
|
|
|
|
saturationInt = clamp(saturationInt, 0, 256)
|
|
|
|
valueInt = clamp(valueInt, 0, 256)
|
|
|
|
|
|
|
|
w, h := gophersImage.Size()
|
|
|
|
op := &ebiten.DrawImageOptions{}
|
|
|
|
op.GeoM.Translate(float64(screenWidth-w)/2, float64(screenHeight-h)/2)
|
|
|
|
hue := float64(hueInt) * 2 * math.Pi / 128
|
|
|
|
saturation := float64(saturationInt) / 128
|
|
|
|
value := float64(valueInt) / 128
|
|
|
|
op.ColorM.ChangeHSV(hue, saturation, value)
|
|
|
|
if err := screen.DrawImage(gophersImage, op); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := fmt.Sprintf(`Hue: %0.2f [Q][W]
|
|
|
|
Saturation: %0.2f [A][S]
|
|
|
|
Value: %0.2f [Z][X]`, hue, saturation, value)
|
|
|
|
if err := ebitenutil.DebugPrint(screen, msg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
var err error
|
2016-05-14 14:15:27 +02:00
|
|
|
gophersImage, _, err = common.AssetImage("gophers.jpg", ebiten.FilterNearest)
|
2016-04-13 18:26:31 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "HSV (Ebiten Demo)"); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</code></pre>
|
|
|
|
|
|
|
|
|
2016-05-14 14:15:27 +02:00
|
|
|
<footer>© 2013 Hajime Hoshi</footer>
|