ebiten/_docs/public/examples/hsv.html

130 lines
3.9 KiB
HTML
Raw Normal View History

2016-04-13 18:26:31 +02:00
<!DOCTYPE html>
<link rel="shortcut icon" href="../favicon.png" type="image/png" >
<link rel="icon" href="../favicon.png" type="image/png" >
<title>Ebiten example - hsv</title>
2016-08-26 19:28:57 +02:00
<link rel="stylesheet" href="/stylesheets/bootstrap.min.css">
2016-08-27 17:13:04 +02:00
<link rel="stylesheet" href="/stylesheets/highlight-github.css">
2016-08-26 19:28:57 +02:00
<link rel="stylesheet" href="/stylesheets/ebiten.css">
<header class="navbar"><div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="/">Ebiten</a>
</div>
2016-08-26 19:37:08 +02:00
<nav class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="https://github.com/hajimehoshi/ebiten">GitHub</a></li>
<li><a href="http://godoc.org/github.com/hajimehoshi/ebiten">GoDoc</a></li>
<li><a href="https://github.com/hajimehoshi/ebiten/wiki">Wiki</a>
</ul>
</nav>
2016-08-26 19:28:57 +02:00
</header>
2016-04-13 18:26:31 +02:00
2016-08-26 19:28:57 +02:00
<main><div class="container">
2016-08-26 20:18:16 +02:00
<h2>Ebiten example - hsv</h2>
2016-08-26 19:28:57 +02:00
<iframe src="hsv.content.html" width="640" height="480"></iframe>
2016-08-27 07:00:06 +02:00
<pre><code class="language-go">// &#43;build example
2016-08-26 16:33:36 +02:00
package main
2016-04-13 18:26:31 +02:00
import (
2016-08-26 22:36:52 +02:00
&#34;fmt&#34;
_ &#34;image/jpeg&#34;
&#34;log&#34;
&#34;math&#34;
2016-04-13 18:26:31 +02:00
2016-08-26 22:36:52 +02:00
&#34;github.com/hajimehoshi/ebiten&#34;
&#34;github.com/hajimehoshi/ebiten/ebitenutil&#34;
2016-04-13 18:26:31 +02:00
)
const (
2016-08-26 22:36:52 +02:00
screenWidth = 320
screenHeight = 240
2016-04-13 18:26:31 +02:00
)
var (
2016-08-26 22:36:52 +02:00
hueInt = 0
saturationInt = 128
valueInt = 128
gophersImage *ebiten.Image
2016-04-13 18:26:31 +02:00
)
func clamp(v, min, max int) int {
2016-08-26 22:36:52 +02:00
if min &gt; max {
panic(&#34;min must &lt;= max&#34;)
}
if v &lt; min {
return min
}
if max &lt; v {
return max
}
return v
2016-04-13 18:26:31 +02:00
}
func update(screen *ebiten.Image) error {
2016-08-26 22:36:52 +02:00
if ebiten.IsKeyPressed(ebiten.KeyQ) {
hueInt--
}
if ebiten.IsKeyPressed(ebiten.KeyW) {
hueInt&#43;&#43;
}
if ebiten.IsKeyPressed(ebiten.KeyA) {
saturationInt--
}
if ebiten.IsKeyPressed(ebiten.KeyS) {
saturationInt&#43;&#43;
}
if ebiten.IsKeyPressed(ebiten.KeyZ) {
valueInt--
}
if ebiten.IsKeyPressed(ebiten.KeyX) {
valueInt&#43;&#43;
}
hueInt = clamp(hueInt, -256, 256)
saturationInt = clamp(saturationInt, 0, 256)
valueInt = clamp(valueInt, 0, 256)
w, h := gophersImage.Size()
op := &amp;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]
2016-04-13 18:26:31 +02:00
Saturation: %0.2f [A][S]
Value: %0.2f [Z][X]`, hue, saturation, value)
2016-08-26 22:36:52 +02:00
if err := ebitenutil.DebugPrint(screen, msg); err != nil {
return err
}
return nil
2016-04-13 18:26:31 +02:00
}
func main() {
2016-08-26 22:36:52 +02:00
var err error
gophersImage, _, err = ebitenutil.NewImageFromFile(&#34;_resources/images/gophers.jpg&#34;, ebiten.FilterNearest)
if err != nil {
log.Fatal(err)
}
if err := ebiten.Run(update, screenWidth, screenHeight, 2, &#34;HSV (Ebiten Demo)&#34;); err != nil {
log.Fatal(err)
}
2016-04-13 18:26:31 +02:00
}
</code></pre>
2016-08-26 19:28:57 +02:00
</div></main>
<footer><div class="container">
<p>© 2013 Hajime Hoshi</p>
<p>Code is licensed under <a href="https://github.com/hajimehoshi/ebiten/blob/master/LICENSE">Apache License 2.0</a>.</p>
<p>The content of this page is licensed under <a href="https://creativecommons.org/licenses/by/4.0/">the Creative Commons Attribution 4.0 License</a>.</p>
</div></footer>
2016-04-13 18:26:31 +02:00
2016-08-27 07:00:06 +02:00
<script src="/scripts/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>