blocks: Adjust flushing colors

This commit is contained in:
Hajime Hoshi 2016-02-16 04:31:20 +09:00
parent 5fcf20678a
commit 9660efc5bd

View File

@ -163,14 +163,24 @@ func (f *Field) Update() error {
return nil return nil
} }
func min(a, b float64) float64 {
if a > b {
return b
}
return a
}
func (f *Field) flushingColor() ebiten.ColorM { func (f *Field) flushingColor() ebiten.ColorM {
c := f.flushCount
if c < 0 {
c = 0
}
rate := float64(c) / maxFlushCount
clr := ebiten.ColorM{} clr := ebiten.ColorM{}
alpha := (float64(f.flushCount) / maxFlushCount) / 2 alpha := min(1, rate*2)
clr.Scale(1, 1, 1, alpha) clr.Scale(1, 1, 1, alpha)
r := (1 - float64(f.flushCount)/maxFlushCount) * 2 r := min(1, (1-rate)*2)
g := (1 - float64(f.flushCount)/maxFlushCount) / 2 clr.Translate(r, 0, 0, 0)
b := (1 - float64(f.flushCount)/maxFlushCount) / 2
clr.Translate(r, g, b, 0)
return clr return clr
} }