On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Getting Started: READ ME Sticky

A topic by LemonToast Games created Mar 17, 2024 Views: 90
Viewing posts 1 to 1
Developer (4 edits)

Introduction

Welcome to the LUI system guide! This comprehensive guide will walk you through harnessing the power of LUI to create immersive and intuitive user interfaces for your games. Whether you're a seasoned developer or new to GameMaker, this tutorial will equip you with the knowledge to craft functional UI elements.


Step 1: Setting Up the LUI System

To begin, let's create a LUI system in the create event of your object. This essential step establishes the groundwork for constructing your UI components seamlessly throughout your game/app. You can have as many LUI systems as you want in your game.

// Create LUI system LUISys = LUI_Create_System();

After creating the LUI system, you need to implement step and draw events to ensure everything just works.

// Step Event: Call LUI_Step for each LUI system
// and 'x' and 'y' with the desired coordinates, these are optional arguments
LUI_Step(LUISys, x, y);  
// Draw Event: Call LUI_Draw for each LUI system
// and 'x' and 'y' with the desired coordinates, these are optional arguments,
// but can be used to draw the UI at a different position in a non destructive way
LUI_Draw(LUISys, x, y);  


Step 2: Define UI Elements

With the LUI system in place, let's explore each available LUI element and how to effectively incorporate them into your game's UI:

Empty

Empty elements act as placeholders within the UI hierarchy and are useful for organizing and structuring your UI layout.

var empty = new LUI_Empty(system, x, y, parent_element); 
  • system: The container or parent element for the empty element.
  • x, y: The coordinates to position the empty element.
  • parent_element (optional): The parent element within which this image resides.

LUI_Empties also include the following variables:

  • xshift/yshift: can be used to nudge the element in any direction without affecting their placement in the UI system, good for adding a "shake" effect to parts of the UI non destructively
  • width/height Typically zero, can be read after creating for organizational means
  • xpin/ypin: Set from 0-1 can make a empty's placement in the UI dynamically pinned to a certain portion of the total UI system area. Useful for pinning elements to any of the corners of the UI area, or centering elements, etc. If the UI area changes at all, the placement of the Empty will automatically adjust.
  • visible: self explanatory.

Images

Images are an indispensable part of the LUI system framework. 

var image = new LUI_Image(system, sprite, subimage, x, y, parent_element); 
  • parent: The container or parent element for the image.
  • sprite: The index of the sprite to display.
  • subimage: The specific frame within the sprite.
  • x, y: The coordinates to position the image.
  • parent_element (optional): The parent element within which this image resides.

LUI_Images also contain the following variables:

  • visible: Determines if the image is visible. Default is true.
  • xshift, yshift: Shifts the image horizontally and vertically non destructively.
  • xpin, ypin: Sets the horizontal and vertical pinning of the image in the UI area.
  • xspan, yspan: Spans the image's width and height within the UI area.
  • spanPad: Padding around the image when spanning.
  • xscale, yscale: Scales the image horizontally and vertically.
  • angle: Rotates the image (in degrees).
  • color: Sets the color tint of the image.
  • alpha: Sets the transparency of the image.
  • left, top: Sets the left and top cropping of the image.
  • hpercent, vpercent: Sets the horizontal and vertical cropping percentages of the image.
  • isButton: Indicates if the image behaves as a button.
  • callback: Function to call when the image is interacted with.
  • active: Determines if the image is active and can be interacted with. Default is true.
  • deactivated: Indicates if the image has been deactivated. Default is false.


Text

Text elements provide crucial textual information to players, such as instructions, dialogue, or game statistics.

var text = new LUI_Text(system, text_string, x, y, font, typewriter, alignment, parent_element); 
  • parent: The container or parent element for the text.
  • text_string: The text to display.
  • x, y: The coordinates to position the text.
  • font: The font style for the text.
  • typewriter (optional): Whether the text is written to the UI one letter at a time, emulating a type writer effect
  • alignment (optional): The alignment of the text (left, center, or right).
  • parent_element (optional): The parent element within which this text resides.

LUI_Text also contains the following variable:s

  • visible: Determines if the text is visible. Default is true.
  • xshift, yshift: Shifts the text horizontally and vertically.
  • xscale, yscale: Scales the text horizontally and vertically.
  • angle: Rotates the text (in degrees).
  • color: Sets the color of the text.
  • alpha: Sets the transparency of the text.
  • xpin, ypin: Sets the horizontal and vertical pinning points of the text.
  • valign: Sets the vertical alignment of the text.
  • halign: Sets the horizontal alignment of the text.
  • height:  (read only) Specifies the height of the text based on the string content.
  • width: (read only) Specifies the width of the text based on the string content.

  • TabPanel

    Tab panels organize content into tabs, allowing players to navigate between different sections of your UI with ease.

    var tabs = new LUI_TabPanel(system, background_sprite, tab_sprite, padding, x, y, parent_element);
    tabs.define(width, height, tab_labels, tab_width, tab_height, tab_spacing, font); 
    
    • parent: The container or parent element for the tab panel.
    • background_sprite: The sprite index of the panel background.
    • tab_sprite: The sprite index of the tab.
    • padding: The padding around the tabs.
    • x, y: The coordinates to position the tab panel.
    • parent_element (optional): The parent element within which this text resides.

    TabPanel also contains the following variables:

  • visible: Determines if the tab panel is visible. Default is true.
  • selected: Index of the currently selected tab.
  • panelW, panelH: Specifies the width and height of the panel.
  • resizable: Determines if the tab panel is resizable.
  • xpin, ypin: Sets the horizontal and vertical pinning points of the tab panel.
  • frameOff: Specifies the frame offset of the tab panel, vertically. Useful for encompassing the tabs within the frame, outside of the frame, or anywhere between.
  • clampDims: Specifies the minimum and maximum dimensions of the tab panel.
  • panel: Array containing panels within the tab panel.

  • Panel

    Panels serve as containers for other UI elements, allowing you to group elements together and organize your UI layout effectively.

    var panel = new LUI_Panel(system, background_sprite, padding, x, y, resizable, parent_element);
    panel.define(width, height); 
    
    • parent: The container or parent element for the panel.
    • background_sprite: The sprite index of the panel background.
    • padding: The padding around the panel.
    • x, y: The coordinates to position the panel.
    •  resizable: whether the panel can be resized or not 
    • parent_element (optional): The parent element within which this text resides.

    LUI_Panel also contains the following variables: 

  • visible: Determines if the panel is visible. Default is true.
  • surface: Specifies the surface of the panel.
  • panelW, panelH: Specifies the width and height of the panel.
  • resizable: Determines if the panel is resizable.
  • xpin, ypin: Sets the horizontal and vertical pinning points of the panel.
  • clampDims: Specifies the minimum and maximum dimensions of the panel.
  • x, y: Specifies the position of the panel.
  • panel: Specifies the LUI system contained within the panel. Add elements to this to make them appear inside of the panel.

  • Checkbox

    Checkboxes enable players to select or deselect an option, providing interactive functionality within your UI.

    var checkbox = new LUI_Checkbox(system, checkbox_sprite, states, x, y, parent_element); 
    
    • parent: The container or parent element for the checkbox.
    • checkbox_sprite: The sprite index of the checkbox.
    • states: An array specifying the subimage indices for the checked and unchecked states.
    • x, y: The coordinates to position the checkbox.
    • parent_element (optional): The parent element within which this text resides.

    RadioButton

    Radio buttons allow players to select a single option from a group of options, facilitating decision-making within your game.

    var radio_group = new LUI_RadioGroup();
    var radioButton1 = new LUI_RadioButton(system, radioButton_sprite, states, x, y, parent_element, radio_group);
    var radioButton2 = new LUI_RadioButton(system, radioButton_sprite, states, x, y, parent_element, radio_group);
    var radioButton3 etc...
    • parent: The container or parent element for the radio button.
    • radioButton_sprite: The sprite index of the radio button.
    • states: An array specifying the subimage indices for the checked and unchecked states.
    • x, y: The coordinates to position the radio button.
    • parent_element (optional): The parent element within which this text resides.
    • radio_group: An instance of LUI_RadioGroup to manage the radio button group.

    Practical Examples

    It's important to pay attention to the hierarchical structure of the LUI system. Any element can be a parent of any other element, and as such, their positions will be relative to each other. 

    Let's take a look at the following example from the included demo:

    var empty = new LUI_Empty(panel,0,0);
    empty.xpin = 0.5;
    yy += tabH/2; 
    var headerback = new LUI_Image(panel,spr_BarTest,0,0,yy-tabH/2,empty);
    headerback.isButton = true;
    headerback.xspan = 0.5;
    headerback.spanPad = 0;
    headerback.height = tabH; 
    var dat = new LUI_Text(panel,"RADIO BUTTONS",xx,yy,Font1,false,fa_left,empty);
    dat.valign = fa_middle;
    yy += tabH-padding;
    

    Above you can see an empty being created inside of a system called "panel." This empty is given an xpin value of 0.5, this means that it will be placed in the middle of the UI area along the x axis, so as the UI area changes, this empty will adjust automatically to always be pinned to the center.

    headerback and dat are both parented to empty. This means wherever empty goes, they will follow.  The xposition of headerback will be equal to that of empty, but the y value of headerback will be equal to empty plus whatever the value of yy is minus half of the value of tabH.

    dat will be placed at the position of empty.x/y PLUS the values of xx/yy. Therefore if xx and yy are both equal to zero then the position of dat would be equal to that of empty.

    Still with me? Great! Let's take a short break for now, I'll be back with more updates soon, so keep your eyes peeled!