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

XInterface.UT2LoadingWeapons


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
class UT2LoadingWeapons extends UT2K3GUIPage;

var Tab_WeaponPref  WeaponTab;

event Timer()
{
    local int i;
    local array<class<Weapon> > WeaponClass;
    local array<string> WeaponDesc;

    // Initialise weapon list. Sort based on current priority - highest priority first
    Controller.GetWeaponList(WeaponClass, WeaponDesc);

    for(i=0; i<WeaponClass.Length; i++)
    {
        WeaponTab.MyCurWeaponList.List.Add(WeaponClass[i].default.ItemName, WeaponClass[i], WeaponDesc[i]);
    }

    WeaponTab.MyCurWeaponList.List.SortList();

    // Spawn spinny weapon actor
    WeaponTab.SpinnyWeap = PlayerOwner().spawn(class'XInterface.SpinnyWeap');
    WeaponTab.SpinnyWeap.SetRotation(PlayerOwner().Rotation);
    WeaponTab.SpinnyWeap.SetStaticMesh(None);

    // Start with first item on list selected
    WeaponTab.MyCurWeaponList.List.SetIndex(0);
    WeaponTab.UpdateCurrentWeapon();

    WeaponTab.bWeapPrefInitialised = true;


    WeaponTab = None;
    Controller.CloseMenu();
}

function StartLoad(Tab_WeaponPref tab )
{
    WeaponTab = tab;

    // Give the menu a chance to render before doing anything...
    SetTimer(0.15);
}

defaultproperties
{
     Begin Object Class=GUIButton Name=LoadWeapBackground
         WinLeft=0.250000
         WinWidth=0.500000
         WinHeight=1.000000
         bBoundToParent=True
         bScaleToParent=True
         bAcceptsInput=False
         bNeverFocus=True
         OnKeyEvent=LoadWeapBackground.InternalOnKeyEvent
     End Object
     Controls(0)=GUIButton'XInterface.UT2LoadingWeapons.LoadWeapBackground'

     Begin Object Class=GUILabel Name=LoadWeapText
         Caption="Loading Weapon Database"
         TextAlign=TXTA_Center
         TextColor=(B=0,G=180,R=220)
         TextFont="UT2HeaderFont"
         WinTop=0.471667
         WinHeight=32.000000
     End Object
     Controls(1)=GUILabel'XInterface.UT2LoadingWeapons.LoadWeapText'

     WinTop=0.425000
     WinHeight=0.150000
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Mon 23/10/2006 20:30:38.000 - Creation time: Wed 7/2/2007 19:16:58.015 - Created with UnCodeX