Noah Petherbridge
9356502a50
Implements the dev console in-game with various commands to start out with. Press the Enter key to show or hide the console. Commands supported: new Start a new map in Edit Mode. save [filename.json] Save the current map to disk. Filename is required unless you have saved recently. edit filename.json Open a map from disk in Edit Mode. play filename.json Play a map from disk in Play Mode.
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
// Package sdl provides an SDL2 renderer for Doodle.
|
|
package sdl
|
|
|
|
import (
|
|
"git.kirsle.net/apps/doodle/render"
|
|
"github.com/veandco/go-sdl2/sdl"
|
|
)
|
|
|
|
// Clear the canvas and set this color.
|
|
func (r *Renderer) Clear(color render.Color) {
|
|
if color != r.lastColor {
|
|
r.renderer.SetDrawColor(color.Red, color.Blue, color.Green, color.Alpha)
|
|
}
|
|
r.renderer.Clear()
|
|
}
|
|
|
|
// DrawPoint puts a color at a pixel.
|
|
func (r *Renderer) DrawPoint(color render.Color, point render.Point) {
|
|
if color != r.lastColor {
|
|
r.renderer.SetDrawColor(color.Red, color.Blue, color.Green, color.Alpha)
|
|
}
|
|
r.renderer.DrawPoint(point.X, point.Y)
|
|
}
|
|
|
|
// DrawLine draws a line between two points.
|
|
func (r *Renderer) DrawLine(color render.Color, a, b render.Point) {
|
|
if color != r.lastColor {
|
|
r.renderer.SetDrawColor(color.Red, color.Blue, color.Green, color.Alpha)
|
|
}
|
|
r.renderer.DrawLine(a.X, a.Y, b.X, b.Y)
|
|
}
|
|
|
|
// DrawRect draws a rectangle.
|
|
func (r *Renderer) DrawRect(color render.Color, rect render.Rect) {
|
|
if color != r.lastColor {
|
|
r.renderer.SetDrawColor(color.Red, color.Green, color.Blue, color.Alpha)
|
|
}
|
|
r.renderer.DrawRect(&sdl.Rect{
|
|
X: rect.X,
|
|
Y: rect.Y,
|
|
W: rect.W,
|
|
H: rect.H,
|
|
})
|
|
}
|
|
|
|
// DrawBox draws a filled rectangle.
|
|
func (r *Renderer) DrawBox(color render.Color, rect render.Rect) {
|
|
if color != r.lastColor {
|
|
r.renderer.SetDrawColor(color.Red, color.Green, color.Blue, color.Alpha)
|
|
}
|
|
r.renderer.FillRect(&sdl.Rect{
|
|
X: rect.X,
|
|
Y: rect.Y,
|
|
W: rect.W,
|
|
H: rect.H,
|
|
})
|
|
}
|