| Home Page | Recent Changes | Preferences

LocalMessage

UT2003 :: Actor >> Info >> LocalMessage (Package: Engine)

LocalMessages are abstract classes which contain an array of localized text. The PlayerController function ReceiveLocalizedMessage() is used to send messages to a specific player by specifying the LocalMessage class and index. This allows the message to be localized on the client side, and saves network bandwidth since the text is not sent. Actors (such as the GameInfo) use one or more LocalMessage classes to send messages. The BroadcastHandler? function BroadcastLocalizedMessage() is used to broadcast localized messages to all the players.

Also see LocalMessage (UT).

Properties

bool bComplexString
Indicates a multicolor string message class. The HUD calls the RenderComplexMessage function to let the message render itself. This only works for string messages like Say, TeamSay or death messages. (bSpecial == False)
bool bIsSpecial
If true, don't add to normal queue.
bool bIsUnique
If true and special, only one can be in the HUD queue at a time.
bool bIsPartiallyUnique
If true and special, only one can be in the HUD queue with the same switch value
bool bIsConsoleMessage
If true, put a GetString on the console.
bool bFadeMessage
If true, use fade out effect on message.
bool bBeep
If true, beep!
int Lifetime
Number of seconds to stay in HUD message queue.
class<LocalMessage> ChildMessage
In some cases, we need to refer to a child message.
Color DrawColor
Default draw color for this message.
EDrawPivot DrawPivot
EStackMode StackMode
Brutal hack! o_O
float PosX, PosY
Default screen location.
int FontSize
0: Huge, 1: Big, 2: Small

Enums

EStackMode

SM_None
SM_Up
SM_Down

Methods

All LocalMessage methods are static functions and most of them return a value based on the Switch, zero to two PlayerReplicationInfos and maybe an optional Object, so don't be suprised to see long function declaration lines here. ;)

RenderComplexMessage (Canvas Canvas, out float XL, out float YL, optional String MessageString, optional int Switch, optional PlayerReplicationInfo RelatedPRI_1, optional PlayerReplicationInfo RelatedPRI_2, optional Object OptionalObject)
string GetRelatedString (optional int Switch, optional PlayerReplicationInfo RelatedPRI_1, optional PlayerReplicationInfo RelatedPRI_2, optional Object OptionalObject)
Returns the display string if for the player mentioned in RelatedPRI_1.
string GetString (optional int Switch, optional PlayerReplicationInfo RelatedPRI_1, optional PlayerReplicationInfo RelatedPRI_2, optional Object OptionalObject)
Returns the display string for all other players.
string AssembleString (HUD myHUD, optional int Switch, optional PlayerReplicationInfo RelatedPRI_1, optional String MessageString)
ClientReceive (PlayerController P, optional int Switch, optional PlayerReplicationInfo RelatedPRI_1, optional PlayerReplicationInfo RelatedPRI_2, optional Object OptionalObject)
color GetConsoleColor (PlayerReplicationInfo RelatedPRI_1)
color GetColor (optional int Switch, optional PlayerReplicationInfo RelatedPRI_1, optional PlayerReplicationInfo RelatedPRI_2)
Returns the draw color for the message.
GetPos (int Switch, out EDrawPivot OutDrawPivot, out EStackMode OutStackMode, out float OutPosX, out float OutPosY)
Returns a draw position on the canvas for the message.
int GetFontSize (int Switch, PlayerReplicationInfo RelatedPRI1, PlayerReplicationInfo RelatedPRI2, PlayerReplicationInfo LocalPlayer)
float GetLifeTime (int Switch)

Known Subclasses

 LocalMessage
  +- BulldogMessage?
  +- CTFHUDMessage?
  |   +- xBombHUDMessage?
  +- ComboMessage?
  +- CriticalEventPlus?
  |   +- ActionMessage?
  |   |   +- ActionMessage_BR?
  |   |   +- ActionMessage_CTF?
  |   |   +- ActionMessage_DM?
  |   |   +- ActionMessage_DOM?
  |   |   +- ActionMessage_SubTitle?
  |   +- CTFMessage?
  |   +- FirstBloodMessage?
  |   +- KillingSpreeMessage?
  |   +- StartupMessage?
  |   +- TimerMessage?
  |   +- xBombMessage?
  +- FailedConnect?
  +- GameMessage?
  +- MultiKillMessage?
  +- PickupMessagePlus?
  +- PlayerNameMessage?
  +- SpecialKillMessage?
  +- StringMessagePlus?
  |   +- SayMessagePlus?
  |   +- TeamSayMessagePlus?
  +- xDeathMessage?
  +- xDomMessage?
  +- xKillerMessagePlus?
  +- xVictimMessage?

Related Topics


Category Class (UT2003)

The Unreal Engine Documentation Site

Wiki Community

Topic Categories

Image Uploads

Random Page

Recent Changes

Offline Wiki

Unreal Engine

Console Commands

Terminology

Mapping Topics

Mapping Lessons

UnrealEd Interface

Questions&Answers

Scripting Topics

Scripting Lessons

Making Mods

Class Tree

Questions&Answers

Modeling Topics

Questions&Answers

Log In