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

UT2k4Assault.Message_Awards


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
//==============================================================================
// Message_Awards
//==============================================================================
// Created by Laurent Delayen
// © 2003, Epic Games, Inc.  All Rights Reserved
//==============================================================================

class Message_Awards extends LocalMessage;

var localized string MSG[2];

static function string GetString(
    optional int Switch,
    optional PlayerReplicationInfo RelatedPRI_1,
    optional PlayerReplicationInfo RelatedPRI_2,
    optional Object OptionalObject
    )
{
    switch( Switch )
    {
        case 0 : return default.MSG[0];
        case 1 : return RelatedPRI_1.PlayerName @ default.MSG[1];
    }

    return default.MSG[Min(Switch,1)];
}

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 byte  Alpha;
    local float IconSize;

    Canvas.DrawTextClipped( MessageString, false );

    if ( Switch == 0 )
    {
        IconSize            = YL * 2;
        Alpha               = Canvas.DrawColor.A;       // Backup Alpha if message fades out
        Canvas.DrawColor    = Canvas.MakeColor(255, 255, 255);
        Canvas.DrawColor.A  = Alpha;

        Canvas.SetPos( Canvas.CurX - IconSize - YL*0.33, Canvas.CurY + YL*0.5 - IconSize*0.5 );
        Canvas.DrawTile( Texture'AS_FX_TX.Icons.ScoreBoard_Objective_Final', IconSize, IconSize, 0, 0, 128, 128);
    }
}

defaultproperties
{
     Msg(0)="You have completed the Objective!"
     Msg(1)="completed the Objective!"
     bComplexString=True
     bIsUnique=True
     bFadeMessage=True
     DrawColor=(B=0,G=0)
     StackMode=SM_Down
     PosY=0.242000
     FontSize=1
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Tue 24/10/2006 17:00:14.000 - Creation time: Wed 7/2/2007 19:16:44.281 - Created with UnCodeX