Noah Petherbridge
647124495b
Added a new level property: Difficulty * An enum ranging from -1, 0, 1 (Peaceful, Normal, Hard) * Default difficulty is Normal; pre-existing levels are Normal by default per the zero value. Doodad scripts can read the difficulty via the new global variable `Level.Difficulty` and some doodads have been updated: * Azulians: on Peaceful they ignore all player characters, and on Hard they are in "hunt mode": infinite aggro radius and they're aggressive to all characters. * Bird: on Peaceful they will not dive and attack any player character. Other spit and polish: * New Level/Level Properties UI reworked into a magicform. * New "PromptPre(question, answer, func)" function for prompting the user with the developer shell, but pre-filling in an answer for them to either post or edit. * magicform has a PromptUser field option for simple Text/Int fields which present as buttons, so magicform can prompt and update the variable itself. * Don't show the _autosave.doodad in the Doodad Dropper window.
83 lines
1.9 KiB
Go
83 lines
1.9 KiB
Go
// +build !js
|
|
|
|
package native
|
|
|
|
import (
|
|
"image"
|
|
|
|
"git.kirsle.net/go/render"
|
|
"git.kirsle.net/go/render/sdl"
|
|
sdl2 "github.com/veandco/go-sdl2/sdl"
|
|
"github.com/veandco/go-sdl2/ttf"
|
|
)
|
|
|
|
// Native render engine functions (SDL2 edition),
|
|
// not for JavaScript/WASM yet.
|
|
|
|
/*
|
|
TextToImage takes an SDL2_TTF texture and makes it into a Go image.
|
|
|
|
Notes:
|
|
- The text is made Black & White with a white background on the image.
|
|
- Drop shadow, stroke, etc. probably not supported.
|
|
- Returns a non-antialiased image.
|
|
*/
|
|
func TextToImage(e render.Engine, text render.Text) (image.Image, error) {
|
|
// engine, _ := e.(*sdl.Renderer)
|
|
|
|
// Make the text black & white for ease of identifying pixels.
|
|
text.Color = render.Black
|
|
|
|
var (
|
|
// renderer = engine.GetSDL2Renderer()
|
|
font *ttf.Font
|
|
surface *sdl2.Surface
|
|
pixFmt *sdl2.PixelFormat
|
|
surface2 *sdl2.Surface
|
|
err error
|
|
)
|
|
|
|
if font, err = sdl.LoadFont(text.FontFilename, text.Size); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if surface, err = font.RenderUTF8Solid(text.Text, sdl.ColorToSDL(text.Color)); err != nil {
|
|
return nil, err
|
|
}
|
|
defer surface.Free()
|
|
|
|
// Convert the Surface into a pixelformat that supports the .At(x,y)
|
|
// function properly, as the one we got above is "Not implemented"
|
|
if pixFmt, err = sdl2.AllocFormat(sdl2.PIXELFORMAT_RGB888); err != nil {
|
|
return nil, err
|
|
}
|
|
if surface2, err = surface.Convert(pixFmt, 0); err != nil {
|
|
return nil, err
|
|
}
|
|
defer surface2.Free()
|
|
|
|
// Read back the pixels.
|
|
var (
|
|
x int
|
|
y int
|
|
w = int(surface2.W)
|
|
h = int(surface2.H)
|
|
img = image.NewRGBA(image.Rect(x, y, w, h))
|
|
)
|
|
for x = 0; x < w; x++ {
|
|
for y = 0; y < h; y++ {
|
|
hue := surface2.At(x, y)
|
|
img.Set(x, y, hue)
|
|
// log.Warn("hue: %s", hue)
|
|
// r, g, b, _ := hue.RGBA()
|
|
// if r == 0 && g == 0 && b == 0 {
|
|
// img.Set(x, y, hue)
|
|
// } else {
|
|
// img.Set(x, y, color.Transparent)
|
|
// }
|
|
}
|
|
}
|
|
|
|
return img, nil
|
|
}
|