Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

ROEngine.ROVehicleSayMessage


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
//=============================================================================
// ROVehicleSayMessage
//=============================================================================
// Message class for Vehicle Say messages
// new class - MrMethane 01/10/2005
//=============================================================================

class ROVehicleSayMessage extends ROStringMessage;

//=============================================================================
// Variables
//=============================================================================

var	Color			VehicleMessageColor;

//=============================================================================
// Functions
//=============================================================================

//-----------------------------------------------------------------------------
// RenderComplexMessage
//-----------------------------------------------------------------------------

static function 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
	)
{
	local string LocationName;

	if (RelatedPRI_1 == None)
		return;


    LocationName = RelatedPRI_1.GetLocationName();

    Canvas.SetDrawColor(default.VehicleMessageColor.R,default.VehicleMessageColor.G,default.VehicleMessageColor.B,default.VehicleMessageColor.A);

	Canvas.DrawText(RelatedPRI_1.PlayerName$" ", false);
	Canvas.SetPos(Canvas.CurX, Canvas.CurY - YL);

	if (LocationName != "")
		Canvas.DrawText("("$LocationName$"):", false);
	else
		Canvas.DrawText(": ", false);

	Canvas.SetPos( Canvas.CurX, Canvas.CurY - YL );
	Canvas.SetDrawColor(255,255,255,255); //DrawColor = default.DrawColor;
	Canvas.DrawText( MessageString, False );
}

//-----------------------------------------------------------------------------
// AssembleString
//-----------------------------------------------------------------------------

static function string AssembleString(
	HUD myHUD,
	optional int Switch,
	optional PlayerReplicationInfo RelatedPRI_1,
	optional String MessageString
	)
{
	local string LocationName;

	if (RelatedPRI_1 == None)
		return "";

    LocationName = RelatedPRI_1.GetLocationName();

	if ( LocationName == "" )
		return RelatedPRI_1.PlayerName@":"@MessageString;
	else
		return RelatedPRI_1.PlayerName$" ("$LocationName$"): "$MessageString;
}

//-----------------------------------------------------------------------------
// GetConsoleColor
//-----------------------------------------------------------------------------

static function Color GetConsoleColor( PlayerReplicationInfo RelatedPRI_1 )
{
	if ( (RelatedPRI_1 == None) || (RelatedPRI_1.Team == None) )
		return default.DrawColor;

    return default.VehicleMessageColor;
}

//=============================================================================
// defaultproperties
//=============================================================================

defaultproperties
{
     VehicleMessageColor=(G=110,A=255)
     bComplexString=True
     bBeep=True
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Fri 13-10-2023 03:17:28.000 - Creation time: Fri 13-10-2023 03:19:07.894 - Created with UnCodeX