Menu Toolbar for Editor + Shell Prompts + Theme
* Added a "menu toolbar" to the top of the Edit Mode with useful buttons
that work: New Level, New Doodad (same thing), Save, Save as, Open.
* Added ability for the dev console to prompt the user for a question,
which opens the console automatically. "Save", "Save as" and "Load"
ask for their filenames this way.
* Started groundwork for theming the app. The palette window is a light
brown with an orange title bar, the Menu Toolbar has a black
background, etc.
* Added support for multiple fonts instead of just monospace. DejaVu
Sans (normal and bold) are used now for most labels and window titles,
respectively. The dev console uses DejaVu Sans Mono as before.
* Update ui.Label to accept PadX and PadY separately instead of only
having the Padding option which did both.
* Improvements to Frame packing algorithm.
* Set the SDL draw mode to BLEND so we can use alpha colors properly,
so now the dev console is semi-translucent.
2018-08-12 00:30:00 +00:00
|
|
|
package balance
|
|
|
|
|
|
|
|
import (
|
2019-12-23 02:21:58 +00:00
|
|
|
"git.kirsle.net/go/render"
|
2019-12-28 00:31:58 +00:00
|
|
|
"git.kirsle.net/go/ui"
|
Menu Toolbar for Editor + Shell Prompts + Theme
* Added a "menu toolbar" to the top of the Edit Mode with useful buttons
that work: New Level, New Doodad (same thing), Save, Save as, Open.
* Added ability for the dev console to prompt the user for a question,
which opens the console automatically. "Save", "Save as" and "Load"
ask for their filenames this way.
* Started groundwork for theming the app. The palette window is a light
brown with an orange title bar, the Menu Toolbar has a black
background, etc.
* Added support for multiple fonts instead of just monospace. DejaVu
Sans (normal and bold) are used now for most labels and window titles,
respectively. The dev console uses DejaVu Sans Mono as before.
* Update ui.Label to accept PadX and PadY separately instead of only
having the Padding option which did both.
* Improvements to Frame packing algorithm.
* Set the SDL draw mode to BLEND so we can use alpha colors properly,
so now the dev console is semi-translucent.
2018-08-12 00:30:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Theme and appearance variables.
|
|
|
|
var (
|
2020-04-22 06:50:45 +00:00
|
|
|
// Title Screen Font
|
|
|
|
TitleScreenFont = render.Text{
|
|
|
|
Size: 46,
|
|
|
|
Color: render.Pink,
|
|
|
|
Stroke: render.SkyBlue,
|
|
|
|
Shadow: render.Black,
|
|
|
|
}
|
|
|
|
|
Menu Toolbar for Editor + Shell Prompts + Theme
* Added a "menu toolbar" to the top of the Edit Mode with useful buttons
that work: New Level, New Doodad (same thing), Save, Save as, Open.
* Added ability for the dev console to prompt the user for a question,
which opens the console automatically. "Save", "Save as" and "Load"
ask for their filenames this way.
* Started groundwork for theming the app. The palette window is a light
brown with an orange title bar, the Menu Toolbar has a black
background, etc.
* Added support for multiple fonts instead of just monospace. DejaVu
Sans (normal and bold) are used now for most labels and window titles,
respectively. The dev console uses DejaVu Sans Mono as before.
* Update ui.Label to accept PadX and PadY separately instead of only
having the Padding option which did both.
* Improvements to Frame packing algorithm.
* Set the SDL draw mode to BLEND so we can use alpha colors properly,
so now the dev console is semi-translucent.
2018-08-12 00:30:00 +00:00
|
|
|
// Window and panel styles.
|
|
|
|
TitleConfig = ui.Config{
|
|
|
|
Background: render.MustHexColor("#FF9900"),
|
|
|
|
OutlineSize: 1,
|
|
|
|
OutlineColor: render.Black,
|
|
|
|
}
|
|
|
|
TitleFont = render.Text{
|
2019-06-28 05:54:46 +00:00
|
|
|
FontFilename: "DejaVuSans-Bold.ttf",
|
2020-07-10 02:38:37 +00:00
|
|
|
Size: 9,
|
Menu Toolbar for Editor + Shell Prompts + Theme
* Added a "menu toolbar" to the top of the Edit Mode with useful buttons
that work: New Level, New Doodad (same thing), Save, Save as, Open.
* Added ability for the dev console to prompt the user for a question,
which opens the console automatically. "Save", "Save as" and "Load"
ask for their filenames this way.
* Started groundwork for theming the app. The palette window is a light
brown with an orange title bar, the Menu Toolbar has a black
background, etc.
* Added support for multiple fonts instead of just monospace. DejaVu
Sans (normal and bold) are used now for most labels and window titles,
respectively. The dev console uses DejaVu Sans Mono as before.
* Update ui.Label to accept PadX and PadY separately instead of only
having the Padding option which did both.
* Improvements to Frame packing algorithm.
* Set the SDL draw mode to BLEND so we can use alpha colors properly,
so now the dev console is semi-translucent.
2018-08-12 00:30:00 +00:00
|
|
|
Padding: 4,
|
|
|
|
Color: render.White,
|
|
|
|
Stroke: render.Red,
|
|
|
|
}
|
|
|
|
WindowBackground = render.MustHexColor("#cdb689")
|
|
|
|
WindowBorder = render.Grey
|
|
|
|
|
|
|
|
// Menu bar styles.
|
|
|
|
MenuBackground = render.Black
|
|
|
|
MenuFont = render.Text{
|
|
|
|
Size: 12,
|
|
|
|
PadX: 4,
|
|
|
|
}
|
2020-07-10 02:38:37 +00:00
|
|
|
MenuFontBold = render.Text{
|
|
|
|
FontFilename: "DejaVuSans-Bold.ttf",
|
|
|
|
Size: 12,
|
|
|
|
PadX: 4,
|
|
|
|
}
|
Menu Toolbar for Editor + Shell Prompts + Theme
* Added a "menu toolbar" to the top of the Edit Mode with useful buttons
that work: New Level, New Doodad (same thing), Save, Save as, Open.
* Added ability for the dev console to prompt the user for a question,
which opens the console automatically. "Save", "Save as" and "Load"
ask for their filenames this way.
* Started groundwork for theming the app. The palette window is a light
brown with an orange title bar, the Menu Toolbar has a black
background, etc.
* Added support for multiple fonts instead of just monospace. DejaVu
Sans (normal and bold) are used now for most labels and window titles,
respectively. The dev console uses DejaVu Sans Mono as before.
* Update ui.Label to accept PadX and PadY separately instead of only
having the Padding option which did both.
* Improvements to Frame packing algorithm.
* Set the SDL draw mode to BLEND so we can use alpha colors properly,
so now the dev console is semi-translucent.
2018-08-12 00:30:00 +00:00
|
|
|
|
2020-11-17 07:20:24 +00:00
|
|
|
// Modal backdrop color.
|
|
|
|
ModalBackdrop = render.RGBA(1, 1, 1, 42)
|
|
|
|
|
Menu Toolbar for Editor + Shell Prompts + Theme
* Added a "menu toolbar" to the top of the Edit Mode with useful buttons
that work: New Level, New Doodad (same thing), Save, Save as, Open.
* Added ability for the dev console to prompt the user for a question,
which opens the console automatically. "Save", "Save as" and "Load"
ask for their filenames this way.
* Started groundwork for theming the app. The palette window is a light
brown with an orange title bar, the Menu Toolbar has a black
background, etc.
* Added support for multiple fonts instead of just monospace. DejaVu
Sans (normal and bold) are used now for most labels and window titles,
respectively. The dev console uses DejaVu Sans Mono as before.
* Update ui.Label to accept PadX and PadY separately instead of only
having the Padding option which did both.
* Improvements to Frame packing algorithm.
* Set the SDL draw mode to BLEND so we can use alpha colors properly,
so now the dev console is semi-translucent.
2018-08-12 00:30:00 +00:00
|
|
|
// StatusFont is the font for the status bar.
|
|
|
|
StatusFont = render.Text{
|
|
|
|
Size: 12,
|
|
|
|
Padding: 4,
|
|
|
|
Color: render.Black,
|
|
|
|
}
|
2018-10-20 22:42:49 +00:00
|
|
|
|
2019-06-25 21:57:11 +00:00
|
|
|
// UIFont is the main font for UI labels.
|
|
|
|
UIFont = render.Text{
|
|
|
|
Size: 12,
|
|
|
|
Padding: 4,
|
|
|
|
Color: render.Black,
|
|
|
|
}
|
|
|
|
|
|
|
|
// LabelFont is the font for strong labels in UI.
|
|
|
|
LabelFont = render.Text{
|
|
|
|
Size: 12,
|
2019-06-28 05:54:46 +00:00
|
|
|
FontFilename: "DejaVuSans-Bold.ttf",
|
2019-06-25 21:57:11 +00:00
|
|
|
Padding: 4,
|
|
|
|
Color: render.Black,
|
|
|
|
}
|
|
|
|
|
Eraser Tool, Brush Sizes
* Implement Brush Sizes for drawtool.Stroke and add a UI to the tools panel
to control the brush size.
* Brush sizes: 1, 2, 4, 8, 16, 24, 32, 48, 64
* Add the Eraser Tool to editor mode. It uses a default brush size of 16
and a max size of 32 due to some performance issues.
* The Undo/Redo system now remembers the original color of pixels when
you change them, so that Undo will set them back how they were instead
of deleting the pixel entirely. Due to performance issues, this only
happens when your Brush Size is 0 (drawing single-pixel shapes).
* UI: Add an IntVariable option to ui.Label to bind showing the value of
an int reference.
Aforementioned performance issues:
* When we try to remember whole rects of pixels for drawing thick
shapes, it requires a ton of scanning for each step of the shape. Even
de-duplicating pixel checks, tons of extra reads are constantly
checked.
* The Eraser is the only tool that absolutely needs to be able to
remember wiped pixels AND have large brush sizes. The performance
sucks and lags a bit if you erase a lot all at once, but it's a
trade-off for now.
* So pixels aren't remembered when drawing lines in your level with
thick brushes, so the Undo action will simply delete your pixels and not
reset them. Only the Eraser can bring back pixels.
2019-07-12 02:07:46 +00:00
|
|
|
// SmallMonoFont for cramped spaces like the +/- buttons on Toolbar.
|
|
|
|
SmallMonoFont = render.Text{
|
|
|
|
Size: 14,
|
|
|
|
PadX: 3,
|
|
|
|
FontFilename: "DejaVuSansMono.ttf",
|
|
|
|
Color: render.Black,
|
|
|
|
}
|
|
|
|
|
2018-10-20 22:42:49 +00:00
|
|
|
// Color for draggable doodad.
|
|
|
|
DragColor = render.MustHexColor("#0099FF")
|
2019-06-26 01:36:53 +00:00
|
|
|
|
2019-07-05 23:04:36 +00:00
|
|
|
// Link lines drawn between connected doodads.
|
|
|
|
LinkLineColor = render.Magenta
|
|
|
|
LinkLighten = 128
|
|
|
|
LinkAnimSpeed uint64 = 30 // ticks
|
|
|
|
|
2019-06-26 01:36:53 +00:00
|
|
|
PlayButtonFont = render.Text{
|
2019-06-28 05:54:46 +00:00
|
|
|
FontFilename: "DejaVuSans-Bold.ttf",
|
2019-06-26 01:36:53 +00:00
|
|
|
Size: 16,
|
|
|
|
Padding: 4,
|
|
|
|
Color: render.RGBA(255, 255, 0, 255),
|
|
|
|
Stroke: render.RGBA(100, 100, 0, 255),
|
|
|
|
}
|
2020-07-10 02:38:37 +00:00
|
|
|
|
|
|
|
// Doodad Dropper Window settings.
|
|
|
|
DoodadButtonBackground = render.RGBA(255, 255, 200, 255)
|
|
|
|
DoodadButtonSize = 64
|
|
|
|
DoodadDropperCols = 6 // rows/columns of buttons
|
|
|
|
DoodadDropperRows = 3
|
Menu Toolbar for Editor + Shell Prompts + Theme
* Added a "menu toolbar" to the top of the Edit Mode with useful buttons
that work: New Level, New Doodad (same thing), Save, Save as, Open.
* Added ability for the dev console to prompt the user for a question,
which opens the console automatically. "Save", "Save as" and "Load"
ask for their filenames this way.
* Started groundwork for theming the app. The palette window is a light
brown with an orange title bar, the Menu Toolbar has a black
background, etc.
* Added support for multiple fonts instead of just monospace. DejaVu
Sans (normal and bold) are used now for most labels and window titles,
respectively. The dev console uses DejaVu Sans Mono as before.
* Update ui.Label to accept PadX and PadY separately instead of only
having the Padding option which did both.
* Improvements to Frame packing algorithm.
* Set the SDL draw mode to BLEND so we can use alpha colors properly,
so now the dev console is semi-translucent.
2018-08-12 00:30:00 +00:00
|
|
|
)
|