2015-01-20 16:02:42 +01:00
|
|
|
// Copyright 2015 Hajime Hoshi
|
2015-01-20 15:58:58 +01: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.
|
|
|
|
|
2018-03-14 17:26:21 +01:00
|
|
|
// +build example jsgo
|
2016-08-25 17:40:39 +02:00
|
|
|
|
2015-01-20 15:58:58 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"image"
|
|
|
|
"log"
|
2016-02-15 17:13:04 +01:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
2015-01-20 15:58:58 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
screenWidth = 320
|
|
|
|
screenHeight = 240
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
noiseImage *image.RGBA
|
|
|
|
)
|
|
|
|
|
|
|
|
type rand struct {
|
|
|
|
x, y, z, w uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *rand) next() uint32 {
|
|
|
|
// math/rand is too slow to keep 60 FPS on web browsers.
|
|
|
|
// Use Xorshift instead: http://en.wikipedia.org/wiki/Xorshift
|
|
|
|
t := r.x ^ (r.x << 11)
|
|
|
|
r.x, r.y, r.z = r.y, r.z, r.w
|
|
|
|
r.w = (r.w ^ (r.w >> 19)) ^ (t ^ (t >> 8))
|
|
|
|
return r.w
|
|
|
|
}
|
|
|
|
|
2018-01-29 19:50:07 +01:00
|
|
|
var theRand = &rand{12345678, 4185243, 776511, 45411}
|
2015-01-20 15:58:58 +01:00
|
|
|
|
|
|
|
func update(screen *ebiten.Image) error {
|
2018-01-29 19:50:07 +01:00
|
|
|
// Generate the noise with random RGB values.
|
2015-01-20 15:58:58 +01:00
|
|
|
const l = screenWidth * screenHeight
|
|
|
|
for i := 0; i < l; i++ {
|
2018-01-29 19:50:07 +01:00
|
|
|
x := theRand.next()
|
2015-01-20 15:58:58 +01:00
|
|
|
noiseImage.Pix[4*i] = uint8(x >> 24)
|
|
|
|
noiseImage.Pix[4*i+1] = uint8(x >> 16)
|
|
|
|
noiseImage.Pix[4*i+2] = uint8(x >> 8)
|
|
|
|
noiseImage.Pix[4*i+3] = 0xff
|
|
|
|
}
|
2018-01-29 19:50:07 +01:00
|
|
|
|
2017-05-16 03:35:58 +02:00
|
|
|
if ebiten.IsRunningSlowly() {
|
|
|
|
return nil
|
|
|
|
}
|
2018-01-29 19:50:07 +01:00
|
|
|
|
2017-03-04 15:00:19 +01:00
|
|
|
screen.ReplacePixels(noiseImage.Pix)
|
|
|
|
ebitenutil.DebugPrint(screen, fmt.Sprintf("FPS: %f", ebiten.CurrentFPS()))
|
2015-01-20 15:58:58 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
noiseImage = image.NewRGBA(image.Rect(0, 0, screenWidth, screenHeight))
|
|
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Noise (Ebiten Demo)"); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|