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"
|
WIP Publish Dialog + UI Improvements
* File->Publish Level in the Level Editor opens the Publish window,
where you can embed custom doodads into your level and export a
portable .level file you can share with others.
* Currently does not actually export a level file yet.
* The dialog lists all unique doodad names in use in your level, and
designates which are built-ins and which are custom (paginated).
* A checkbox would let the user embed built-in doodads into their level,
as well, locking it in to those versions and not using updated
versions from future game releases.
UI Improvements:
* Added styling for a "Primary" UI button, rendered in deep blue.
* Pop-up modals (Alert, Confirm) color their Ok button as Primary.
* The Enter key pressed during an Alert or Confirm modal will invoke its
default button and close the modal, corresponding to its Primary
button.
* The developer console is now opened with the tilde/grave key ` instead
of the Enter key, so that the Enter key is free to click through
modals.
* In the "Open/Edit Drawing" window, a "Browse..." button is added to
the level and doodad sections, spawning a native File Open dialog to
pick a .level or .doodad outside the config root.
2021-06-11 05:31:30 +00:00
|
|
|
"git.kirsle.net/go/ui/style"
|
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,
|
|
|
|
}
|
2021-07-12 04:54:28 +00:00
|
|
|
TitleScreenSubtitleFont = render.Text{
|
|
|
|
FontFilename: "DejaVuSans.ttf",
|
|
|
|
Size: 18,
|
|
|
|
Color: render.SkyBlue,
|
|
|
|
Shadow: render.SkyBlue.Darken(128),
|
|
|
|
// Color: render.RGBA(255, 153, 0, 255),
|
|
|
|
// Shadow: render.RGBA(200, 80, 0, 255),
|
|
|
|
}
|
|
|
|
TitleScreenVersionFont = render.Text{
|
|
|
|
Size: 14,
|
|
|
|
Color: render.Grey,
|
|
|
|
Shadow: render.Black,
|
|
|
|
}
|
2020-04-22 06:50:45 +00:00
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
2021-06-20 05:14:41 +00:00
|
|
|
// CodeLiteralFont for rendering <code>-like text.
|
|
|
|
CodeLiteralFont = render.Text{
|
|
|
|
Size: 11,
|
|
|
|
PadX: 3,
|
|
|
|
FontFilename: "DejaVuSansMono.ttf",
|
|
|
|
Color: render.Magenta,
|
|
|
|
}
|
|
|
|
|
2021-06-13 23:03:32 +00:00
|
|
|
// Small font
|
|
|
|
SmallFont = render.Text{
|
|
|
|
Size: 10,
|
|
|
|
Padding: 4,
|
|
|
|
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
|
WIP Publish Dialog + UI Improvements
* File->Publish Level in the Level Editor opens the Publish window,
where you can embed custom doodads into your level and export a
portable .level file you can share with others.
* Currently does not actually export a level file yet.
* The dialog lists all unique doodad names in use in your level, and
designates which are built-ins and which are custom (paginated).
* A checkbox would let the user embed built-in doodads into their level,
as well, locking it in to those versions and not using updated
versions from future game releases.
UI Improvements:
* Added styling for a "Primary" UI button, rendered in deep blue.
* Pop-up modals (Alert, Confirm) color their Ok button as Primary.
* The Enter key pressed during an Alert or Confirm modal will invoke its
default button and close the modal, corresponding to its Primary
button.
* The developer console is now opened with the tilde/grave key ` instead
of the Enter key, so that the Enter key is free to click through
modals.
* In the "Open/Edit Drawing" window, a "Browse..." button is added to
the level and doodad sections, spawning a native File Open dialog to
pick a .level or .doodad outside the config root.
2021-06-11 05:31:30 +00:00
|
|
|
|
|
|
|
// Button styles, customized in init().
|
2021-06-14 04:23:26 +00:00
|
|
|
ButtonPrimary = style.DefaultButton
|
|
|
|
ButtonDanger = style.DefaultButton
|
|
|
|
ButtonBabyBlue = style.DefaultButton
|
|
|
|
ButtonPink = style.DefaultButton
|
|
|
|
ButtonLightRed = style.DefaultButton
|
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
|
|
|
)
|
WIP Publish Dialog + UI Improvements
* File->Publish Level in the Level Editor opens the Publish window,
where you can embed custom doodads into your level and export a
portable .level file you can share with others.
* Currently does not actually export a level file yet.
* The dialog lists all unique doodad names in use in your level, and
designates which are built-ins and which are custom (paginated).
* A checkbox would let the user embed built-in doodads into their level,
as well, locking it in to those versions and not using updated
versions from future game releases.
UI Improvements:
* Added styling for a "Primary" UI button, rendered in deep blue.
* Pop-up modals (Alert, Confirm) color their Ok button as Primary.
* The Enter key pressed during an Alert or Confirm modal will invoke its
default button and close the modal, corresponding to its Primary
button.
* The developer console is now opened with the tilde/grave key ` instead
of the Enter key, so that the Enter key is free to click through
modals.
* In the "Open/Edit Drawing" window, a "Browse..." button is added to
the level and doodad sections, spawning a native File Open dialog to
pick a .level or .doodad outside the config root.
2021-06-11 05:31:30 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
// Customize button styles.
|
|
|
|
ButtonPrimary.Background = render.RGBA(0, 60, 153, 255)
|
|
|
|
ButtonPrimary.Foreground = render.RGBA(255, 255, 254, 255)
|
|
|
|
ButtonPrimary.HoverBackground = render.RGBA(0, 153, 255, 255)
|
|
|
|
ButtonPrimary.HoverForeground = ButtonPrimary.Foreground
|
2021-06-13 23:03:32 +00:00
|
|
|
|
|
|
|
ButtonDanger.Background = render.RGBA(153, 30, 30, 255)
|
|
|
|
ButtonDanger.Foreground = render.RGBA(255, 255, 254, 255)
|
|
|
|
ButtonDanger.HoverBackground = render.RGBA(255, 30, 30, 255)
|
|
|
|
ButtonDanger.HoverForeground = ButtonPrimary.Foreground
|
2021-06-14 04:23:26 +00:00
|
|
|
|
|
|
|
ButtonBabyBlue.Background = render.RGBA(0, 153, 255, 255)
|
2021-06-17 04:55:45 +00:00
|
|
|
ButtonBabyBlue.Foreground = render.White
|
2021-06-14 04:23:26 +00:00
|
|
|
ButtonBabyBlue.HoverBackground = render.RGBA(0, 220, 255, 255)
|
2021-06-17 04:55:45 +00:00
|
|
|
ButtonBabyBlue.HoverForeground = render.White
|
2021-06-14 04:23:26 +00:00
|
|
|
|
|
|
|
ButtonPink.Background = render.RGBA(255, 153, 255, 255)
|
|
|
|
ButtonPink.HoverBackground = render.RGBA(255, 220, 255, 255)
|
|
|
|
|
|
|
|
ButtonLightRed.Background = render.RGBA(255, 90, 90, 255)
|
|
|
|
ButtonLightRed.HoverBackground = render.RGBA(255, 128, 128, 255)
|
WIP Publish Dialog + UI Improvements
* File->Publish Level in the Level Editor opens the Publish window,
where you can embed custom doodads into your level and export a
portable .level file you can share with others.
* Currently does not actually export a level file yet.
* The dialog lists all unique doodad names in use in your level, and
designates which are built-ins and which are custom (paginated).
* A checkbox would let the user embed built-in doodads into their level,
as well, locking it in to those versions and not using updated
versions from future game releases.
UI Improvements:
* Added styling for a "Primary" UI button, rendered in deep blue.
* Pop-up modals (Alert, Confirm) color their Ok button as Primary.
* The Enter key pressed during an Alert or Confirm modal will invoke its
default button and close the modal, corresponding to its Primary
button.
* The developer console is now opened with the tilde/grave key ` instead
of the Enter key, so that the Enter key is free to click through
modals.
* In the "Open/Edit Drawing" window, a "Browse..." button is added to
the level and doodad sections, spawning a native File Open dialog to
pick a .level or .doodad outside the config root.
2021-06-11 05:31:30 +00:00
|
|
|
}
|