UDN
Search public documentation:

MOBAKitUI
中国翻译
한국어

Interested in the Unreal Engine?
Visit the Unreal Technology site.

Looking for jobs and company info?
Check out the Epic games site.

Questions about support via UDN?
Contact the UDN Staff

UE3 Home > Unreal Development Kit Gems > MOBA Starter Kit > UI

MOBA Starter Kit - UI


Last tested against UDK May, 2012

Overview


MOBA's generally have a lot of information on the HUD. All of the HUD in the MOBA Starter Kit is done within Scaleform, and while the HUD classes still exists; it is mostly just a shell to forward commands to Scaleform or to pass along the Canvas instance. Some parts of the HUD is described in other documents, so this document focuses on areas which do not have their own sections.

Hero Area


MOBAKitHeroArea.jpg

The hero area contains information about the state of the hero. It shows the hero's health, level, mana, portrait, spells and stats. The majority of the hero area box GFx widgets are cached in UDKMOBAGFxHUD::ConfigHero(). Most of the core logic is done in UDKMOBAGFxHUD::UpdateCurrentHero() which is called by UDKMOBAGFxHUD::Tick().

Health

The health portion has three parts to it.
  • Health bar
  • Current health text
  • Regeneration of health text

Within UDKMOBAGFxHUD::UpdateCurrentHero() is where the health bar is kept up to date. A mask is used make the bar appear to scale down. This technique was used over scaling the health bar, as it ensured that the graphic did not scale as well. It's also a little easier to keep up to date, as you only need to calculate the position of the mask. The health bar text is also kept up to date in the same place, and it is done by setting the text of the text fields.

Mana

The mana portion has three parts to it.
  • Mana bar
  • Current mana text
  • Regeneration of mana text

The mana bar is kept up to date in the same fashion as the health bar.

Portrait

The portrait used depends on the platform. On the Mobile platform a static pre-rendered image is used, while on the PC platform a real time dynamic render target is used to produce an animating portrait. This is handled via UDKMOBAGFxHUD::SetHeroPortrait(), and all it does is set the texture resource to a Texture2D which is a parameter in that function.

On the mobile platform, UDKMOBAHUD_Mobile::PostRender() is used to set the portrait. In this case, all this function does is to set a texture to the GFx widget.

On the PC platform, UDKMOBAHUD_PC::PostRender() is used to set the portrait. On the PC platform it creates an off screen render target which captures an animating skeletal mesh that is spawned somewhere randomly in the map so that it doesn't interfere with the map. This creates the animating portrait without having to pre-render a portrait movie. This also allows you also change the hero art without having to rerender the portrait movie. You can also include other fancy effects such as particle effects, lighting effects and so forth.

Spells

The spells section is created dynamically from complex Scaleform widgets. This is handled in UDKMOBAGFxHUD::ConfigSpells(). UDKMOBAGFxHUD::ConfigSpells() iterates over the heroes spells and dynamically attaches new GFx widgets to the HUD. It then binds those buttons to the appropriate event listeners and sets up everything else.

The event listeners are what handle aspects such as leveling up a spell, triggering a spell and so forth.

Stats

The stats section mostly just has text fields that are updated as the hero is updated. This is primarily updated in UDKMOBAGFxHUD::UpdateHeroStats(), and this simply grabs the values from the hero and assigns them to the text fields that have been cached within UDKMOBAGFxHUD::ConfigHero().

Inventory Area


MOBAKitInventoryArea.jpg

The inventory area contains both the player's current inventory items and the player's stash inventory items. Both are predefined in Scaleform, and use a complex movie clip to handle the items. A text field is used to maintain the amount of money the player has, and the shop button is just a simple button which can have its chrome updated to indicate if the player was in the shop area or not. These are all cached in UDKMOBAGFxHUD::ConfigInventory().

Current Inventory Slots

Current inventory slots are on the left and are bigger than the stash inventory slots. These updated via UDKMOBAGFxHUD::NotifyItemReceived() which is called from UDKMOBAPawnReplicationInfo when the inventory array has changed. What this does is simply look up the cached GFx inventory array, and assigns the various widgets to the appropriate values.

Stash Inventory Slots

This is updated in the same manner as current inventory slots.

Cash text field

This is updated via the function UDKMOBAGFxHUD::NotifyMoneyUpdated(), and it simply sets the text of the text field. This is called by UDKMOBAPlayerReplicationInfo::MoneyUpdated() when the UDKMOBAPlayerReplicationInfo.Money variable has changed.

Shop button

When this GFxClikWidget is initialized in UDKMOBAGFxHUD::ConfigInventory() it binds an event listener to a delegate called PressShop(). This delegate simply toggles the visibility of the ShopAreaMC. UDKMOBAGFxHUD::ToggleShopButtonChrome() is also used to change the color of the chrome button. The change of the color indicates whether the player is within their shop volume or not.

Messages


MOBAKitMessageArea.jpg

Messages are dynamically spawned movie clips that have text fields that are set. They also animate fading in and fading out to make the UI feel more polished and dynamic. Some helper functions have been added to UDKMOBAGFxHUD to make it easier to add messages.

  • UDKMOBAGFxHUD::AddCenteredMessage() - This adds a message in the center of the screen.
  • UDKMOBAGFxHUD::AddMessage() - This adds a message on the left of the screen.

Both of these functions call UDKMOBAGFxHUD::AddGenericMessage() which either creates a new symbol to attach to the HUD or reuse an old symbol that has been hidden. After a symbol is selected, the function then shuffles the visible messages upwards and places the new symbol at the bottom. The text of the symbol is set and the symbol is told to play an animation using a frame name specified in Adobe Flash Professional.

To maintain the messages, UDKMOBAGFxHUD::UpdateGenericLogMessages() is called in UDKMOBAGFxHUD::Tick(). This function iterates over the appropriate message arrays, and checks if they have expired or not. If they have expired then the message symbol is told to play an animation using a frame name specified in Adobe Flash Professional.

Top Area


MOBAKitTopArea.jpg

The top area contains information about the general state of the game. On the far left is the main menu button, in the center is the kill count for the teams, an area where hero icons are shown and a day night clock, and on the far right is the kill, deaths and assists stats.

Main Menu button

The main menu button is cached in UDKMOBAGFxHUD::ConfigHUD() and the button is set up with event listeners. The event listener which binds to the button press simply opens up the main menu. It opens up the main menu by first checking if the main menu instance has already been attached to the scene or not. If it hasn't, then a new main menu instance is created and attached to the menu storage movie clip. The menu storage menu clip exists to ensure that the layering of the symbols is maintained. If it has been created, then its visibility is set true. It then pauses the game.

When the main menu is open, it has two options. Either to return to the game or to exit from the game. If the player returns to the game, then the game is then unpaused and the main menu is hidden. If the player wants to exit the game, then the HUD is first closed and the the exit command is called from the console.

MOBAKitMainMenu.jpg

Day Night movie clip

The day night movie clip are cached in UDKMOBAGFxHUD::ConfigHUD() and is updated in UDKMOBAGFxHUD::UpdateGameTimer() and UDKMOBAGFxHUD::UpdateDayNightCycle() which are called in UDKMOBAGFxHUD::Tick(). UDKMOBAGFxHUD::UpdateGameTimer() updates the text field of the day night text field. UDKMOBAGFxHUD::UpdateDayNightCycle() calculates which animation to play, and then tells the day night indicator movie clip to play the appropriate animation.

Kill / Deaths / Assists stats

The text fields are cached in UDKMOBAGFxHUD::ConfigHUD(). UDKMOBAGFxHUD::UpdateStats() is called via UDKMOBAGFxHUD::Tick() and checks the values of the player's PRI and sets the text fields to the appropriate values.