2014-12-24 03:04:10 +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.
|
2014-12-10 17:59:38 +01:00
|
|
|
|
|
|
|
package ebitenutil
|
|
|
|
|
|
|
|
import (
|
2017-05-27 20:10:32 +02:00
|
|
|
"image"
|
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"github.com/hajimehoshi/ebiten/ebitenutil/internal/assets"
|
2014-12-10 17:59:38 +01:00
|
|
|
)
|
|
|
|
|
2018-03-04 18:08:44 +01:00
|
|
|
var (
|
|
|
|
debugPrintTextImage *ebiten.Image
|
|
|
|
debugPrintTextShadowImage *ebiten.Image
|
|
|
|
)
|
2014-12-10 17:59:38 +01:00
|
|
|
|
2018-03-04 14:49:01 +01:00
|
|
|
func init() {
|
|
|
|
img := assets.CreateTextImage()
|
|
|
|
debugPrintTextImage, _ = ebiten.NewImageFromImage(img, ebiten.FilterDefault)
|
2018-03-04 18:08:44 +01:00
|
|
|
|
|
|
|
// Using color matrices for shadow color is not efficient.
|
|
|
|
// Instead, use a different image, that shares the same texture in highly possibility.
|
|
|
|
s := img.Bounds().Size()
|
|
|
|
for j := 0; j < s.Y; j++ {
|
|
|
|
for i := 0; i < s.X; i++ {
|
|
|
|
idx := (img.Stride)*j + 4*i
|
|
|
|
if img.Pix[idx+3] != 0 {
|
|
|
|
img.Pix[idx] = 0
|
|
|
|
img.Pix[idx+1] = 0
|
|
|
|
img.Pix[idx+2] = 0
|
|
|
|
img.Pix[idx+3] = 0x80
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
debugPrintTextShadowImage, _ = ebiten.NewImageFromImage(img, ebiten.FilterDefault)
|
2018-03-04 14:49:01 +01:00
|
|
|
}
|
2014-12-10 17:59:38 +01:00
|
|
|
|
2016-08-01 18:47:25 +02:00
|
|
|
// DebugPrint draws the string str on the image.
|
2017-03-04 04:02:41 +01:00
|
|
|
//
|
2018-02-19 18:02:30 +01:00
|
|
|
// The available runes are in U+0000 to U+00FF, which is C0 Controls and Basic Latin and C1 Controls and Latin-1 Supplement.
|
|
|
|
//
|
2017-03-04 04:02:41 +01:00
|
|
|
// DebugPrint always returns nil as of 1.5.0-alpha.
|
2016-08-01 18:47:25 +02:00
|
|
|
func DebugPrint(image *ebiten.Image, str string) error {
|
2018-03-04 18:08:44 +01:00
|
|
|
drawDebugText(image, str, 1, 1, debugPrintTextShadowImage)
|
|
|
|
drawDebugText(image, str, 0, 0, debugPrintTextImage)
|
2017-03-04 04:02:41 +01:00
|
|
|
return nil
|
2014-12-10 17:59:38 +01:00
|
|
|
}
|
|
|
|
|
2018-03-04 18:08:44 +01:00
|
|
|
func drawDebugText(rt *ebiten.Image, str string, ox, oy int, src *ebiten.Image) {
|
2017-05-27 20:10:32 +02:00
|
|
|
op := &ebiten.DrawImageOptions{}
|
|
|
|
x := 0
|
|
|
|
y := 0
|
2018-03-04 14:49:01 +01:00
|
|
|
w, _ := debugPrintTextImage.Size()
|
2017-05-27 20:10:32 +02:00
|
|
|
for _, c := range str {
|
2018-02-10 17:56:13 +01:00
|
|
|
const (
|
|
|
|
cw = assets.CharWidth
|
|
|
|
ch = assets.CharHeight
|
|
|
|
)
|
2017-05-27 20:10:32 +02:00
|
|
|
if c == '\n' {
|
|
|
|
x = 0
|
|
|
|
y += ch
|
|
|
|
continue
|
|
|
|
}
|
2018-02-10 17:56:13 +01:00
|
|
|
n := w / cw
|
2017-05-27 20:10:32 +02:00
|
|
|
sx := (int(c) % n) * cw
|
|
|
|
sy := (int(c) / n) * ch
|
|
|
|
r := image.Rect(sx, sy, sx+cw, sy+ch)
|
|
|
|
op.SourceRect = &r
|
|
|
|
op.GeoM.Reset()
|
|
|
|
op.GeoM.Translate(float64(x), float64(y))
|
|
|
|
op.GeoM.Translate(float64(ox+1), float64(oy))
|
2018-03-04 18:08:44 +01:00
|
|
|
_ = rt.DrawImage(src, op)
|
2017-05-27 20:10:32 +02:00
|
|
|
x += cw
|
|
|
|
}
|
2014-12-10 17:59:38 +01:00
|
|
|
}
|