2014-12-10 17:59:38 +01:00
|
|
|
/*
|
|
|
|
Copyright 2014 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package ebitenutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"github.com/hajimehoshi/ebiten/internal/assets"
|
|
|
|
"image/color"
|
|
|
|
)
|
|
|
|
|
|
|
|
type debugPrintState struct {
|
2014-12-17 13:49:28 +01:00
|
|
|
textTexture *ebiten.Texture
|
2014-12-10 17:59:38 +01:00
|
|
|
debugPrintRenderTarget ebiten.RenderTargetID
|
|
|
|
y int
|
|
|
|
}
|
|
|
|
|
|
|
|
var defaultDebugPrintState = new(debugPrintState)
|
|
|
|
|
2014-12-14 09:28:19 +01:00
|
|
|
func DebugPrint(gr ebiten.GraphicsContext, str string) {
|
|
|
|
defaultDebugPrintState.DebugPrint(gr, str)
|
2014-12-10 17:59:38 +01:00
|
|
|
}
|
|
|
|
|
2014-12-10 19:50:35 +01:00
|
|
|
func (d *debugPrintState) drawText(gr ebiten.GraphicsContext, str string, x, y int, clr color.Color) {
|
2014-12-10 17:59:38 +01:00
|
|
|
parts := []ebiten.TexturePart{}
|
|
|
|
locationX, locationY := 0, 0
|
|
|
|
for _, c := range str {
|
|
|
|
if c == '\n' {
|
|
|
|
locationX = 0
|
|
|
|
locationY += assets.TextImageCharHeight
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
code := int(c)
|
|
|
|
const xCharNum = assets.TextImageWidth / assets.TextImageCharWidth
|
|
|
|
srcX := (code % xCharNum) * assets.TextImageCharWidth
|
|
|
|
srcY := (code / xCharNum) * assets.TextImageCharHeight
|
|
|
|
parts = append(parts, ebiten.TexturePart{
|
|
|
|
LocationX: locationX,
|
|
|
|
LocationY: locationY,
|
|
|
|
Source: ebiten.Rect{srcX, srcY, assets.TextImageCharWidth, assets.TextImageCharHeight},
|
|
|
|
})
|
|
|
|
locationX += assets.TextImageCharWidth
|
|
|
|
}
|
2014-12-10 19:50:35 +01:00
|
|
|
geom := ebiten.GeometryMatrixI()
|
2014-12-14 17:58:52 +01:00
|
|
|
geom.Concat(ebiten.TranslateGeometry(float64(x)+1, float64(y)))
|
2014-12-10 19:50:35 +01:00
|
|
|
clrm := ebiten.ColorMatrixI()
|
2014-12-14 18:04:33 +01:00
|
|
|
clrm.Concat(ebiten.ScaleColor(clr))
|
2014-12-10 19:50:35 +01:00
|
|
|
gr.Texture(d.textTexture).Draw(parts, geom, clrm)
|
2014-12-10 17:59:38 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 09:28:19 +01:00
|
|
|
func (d *debugPrintState) DebugPrint(gr ebiten.GraphicsContext, str string) {
|
2014-12-17 13:49:28 +01:00
|
|
|
if d.textTexture == nil {
|
2014-12-10 17:59:38 +01:00
|
|
|
img, err := assets.TextImage()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-12-17 13:49:28 +01:00
|
|
|
d.textTexture, err = ebiten.NewTexture(img, ebiten.FilterNearest)
|
2014-12-10 17:59:38 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if d.debugPrintRenderTarget.IsNil() {
|
|
|
|
width, height := 256, 256
|
|
|
|
var err error
|
2014-12-14 09:28:19 +01:00
|
|
|
d.debugPrintRenderTarget, err = ebiten.NewRenderTargetID(width, height, ebiten.FilterNearest)
|
2014-12-10 17:59:38 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
2014-12-10 19:50:35 +01:00
|
|
|
d.drawText(gr, str, 1, d.y+1, &color.RGBA{0x00, 0x00, 0x00, 0x80})
|
|
|
|
d.drawText(gr, str, 0, d.y, &color.RGBA{0xff, 0xff, 0xff, 0xff})
|
2014-12-10 17:59:38 +01:00
|
|
|
}
|