Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
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 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 00139 00140 00141 00142 00143 00144 00145 00146 00147 00148 00149 00150 00151 00152 00153 00154 00155 00156 00157 00158 00159 00160 00161 00162 00163 00164 00165 00166 00167 00168 00169 00170 00171 00172 00173 00174 00175 00176 00177 |
//============================================================================== // KFDCOptionPage //============================================================================== class KFDCOptionPage extends UT2K4DisconnectOptionPage; function bool InternalOnClick(GUIComponent Sender) { local GUIController C; if ( GUIButton(Sender) == None ) return false; C = Controller; switch (GUIButton(Sender).Caption) { case b_MainMenu.Caption: UT2K4GUIController(C).ReturnToMainMenu(); return true; case b_ServerBrowser.Caption: // If we still have a pending connection, do not close this menu when opening the server browser // or the player will be stuck in the menus if the connection succeeds, since the server browser // isn't allowed as last (closing the server browser would then cause the main menu to appear) if ( PlayerOwner().Level.IsPendingConnection() ) C.OpenMenu( C.GetServerBrowserPage() ); else { // Clear the controller's restore menu array or things will get very messy C.CloseAll(true,true); C.RestoreMenus.Length = 0; C.OpenMenu( C.GetServerBrowserPage() ); // Controller.ReplaceMenu( Controller.GetServerBrowserPage() ); } return true; case b_Quit.Caption: C.OpenMenu(C.GetQuitPage()); return true; case b_Reconnect.Caption: C.ViewportOwner.Console.DelayedConsoleCommand("Reconnect"); C.CloseMenu(false); return True; // Controller.CloseAll(false,true); } return false; } function UpdateStatus(string NewStatus) { l_Status.Caption = NewStatus; } function bool InternalOnPreDraw(Canvas C) { local int i; local float X, width; for ( i = 0; i < Components.Length; i++ ) if ( GUIButton(Components[i]) != None ) width += Components[i].ActualWidth(); width += 30; X = ((ActualLeft() + ActualWidth()) / 2) - (width / 2); for ( i = 0; i < Components.Length; i++ ) { if ( GUIButton(Components[i]) != None ) { Components[i].WinLeft = RelativeLeft(X); X += Components[i].ActualWidth() + 10; } } return false; } function bool InternalOnKeyEvent(out byte Key, out byte State, float delta) { if ( Key == 0x0D && State == 3 ) // Enter return InternalOnClick( GUIButton(FocusedControl) ); return false; } event bool NotifyLevelChange() { return false; } function bool CanClose( bool bCancelled ) { // Only allow this menu to be closed (using escape) if we are currently connected // to a server, or we still have a pending connection, unless we were in some other menu if ( bCancelled && Controller.KeyPressed(IK_Escape) && !PlayerOwner().Level.IsPendingConnection() && PlayerOwner().Level.IsEntry() ) return Controller.Count() > 1; return true; } function bool AllowOpen(string MenuClass) { if (MenuClass~= "GUI2k4.UT2K4DisconnectOptionPage") return false; else return true; } defaultproperties { Begin Object Class=GUIButton Name=MainMenuButton Caption="MAIN MENU" bAutoSize=True WinTop=0.548235 WinLeft=0.157811 WinWidth=0.132806 TabOrder=1 OnClick=KFDCOptionPage.InternalOnClick OnKeyEvent=MainMenuButton.InternalOnKeyEvent End Object b_MainMenu=GUIButton'KFGui.KFDCOptionPage.MainMenuButton' Begin Object Class=GUIButton Name=ServerBrowserButton Caption="SERVER BROWSER" bAutoSize=True WinTop=0.548235 WinLeft=0.398437 WinWidth=0.223632 TabOrder=2 OnClick=KFDCOptionPage.InternalOnClick OnKeyEvent=ServerBrowserButton.InternalOnKeyEvent End Object b_ServerBrowser=GUIButton'KFGui.KFDCOptionPage.ServerBrowserButton' Begin Object Class=GUIButton Name=ReconnectButton Caption="RECONNECT" bAutoSize=True WinTop=0.548235 WinLeft=0.345702 WinWidth=0.132806 TabOrder=0 OnClick=KFDCOptionPage.InternalOnClick OnKeyEvent=ReconnectButton.InternalOnKeyEvent End Object b_Reconnect=GUIButton'KFGui.KFDCOptionPage.ReconnectButton' Begin Object Class=GUIButton Name=QuitButton Caption="EXIT UT2004" bAutoSize=True WinTop=0.548235 WinLeft=0.627929 WinWidth=0.223632 TabOrder=3 OnClick=KFDCOptionPage.InternalOnClick OnKeyEvent=QuitButton.InternalOnKeyEvent End Object b_Quit=GUIButton'KFGui.KFDCOptionPage.QuitButton' Begin Object Class=GUILabel Name=cNetStatLabel Caption="Select an option" TextAlign=TXTA_Center bMultiLine=True FontScale=FNS_Large StyleName="TextLabel" WinTop=0.314687 WinHeight=0.099922 bBoundToParent=True End Object l_Status=GUILabel'KFGui.KFDCOptionPage.cNetStatLabel' OnCanClose=KFDCOptionPage.CanClose OnPreDraw=KFDCOptionPage.InternalOnPreDraw OnKeyEvent=KFDCOptionPage.InternalOnKeyEvent } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |