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

XInterface.Tab_SPTutorials


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
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233
00234
00235
00236
00237
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319
00320
// ====================================================================
//  Class:  XInterface.Tab_SPTutorials
//  Parent: XInterface.Tab_SPPanelBase
//  Single player menu for calling up tutorials.
//  author:  capps 9/14/02  <-- great day to add a menu!
// ====================================================================

class Tab_SPTutorials extends Tab_SPPanelBase;

#exec OBJ LOAD File=Laddershots.utx

var array<GUIImage>		TutImages;		// gametype image
var array<GUIImage>		TutBorders;		// border for image
var array<GUILabel>		TutLabels;		// label for gametype
var array<GUIButton>    TutButtons;		// big button to overlay all that stuff

var localized string	SelectMessage;	// hint for selection

var config bool bTDMUnlocked, bDOMUnlocked, bCTFUnlocked, bBRUnlocked;  // whether these ladders have ever been unlocked

const DMIndex = 0;
const DOMIndex = 1;
const CTFIndex = 2;
const BRIndex = 3;

const NumButtons = 4;

function InitComponent(GUIController MyController, GUIComponent MyOwner)
{
	local int i;

	Super.Initcomponent(MyController, MyOwner);

	for (i = 0; i<NumButtons; i++)
	{
		TutImages[i] = GUIImage(Controls[i*4]);
		TutBorders[i] = GUIImage(Controls[(i*4) + 1]);
		TutLabels[i] = GUILabel(Controls[(i*4) + 2]);
		TutButtons[i] = GUIButton(Controls[(i*4) + 3]);
	}

	TutLabels[DMIndex].Caption = class'xGame.xDeathMatch'.default.GameName;
	TutLabels[DOMIndex].Caption = class'xGame.xDoubleDom'.default.GameName;
	TutLabels[CTFIndex].Caption = class'xGame.xCTFGame'.default.GameName;
	TutLabels[BRIndex].Caption = class'xGame.xBombingRun'.default.GameName;

	for (i = 0; i<NumButtons; i++)
		TutButtons[i].Hint = SelectMessage@TutLabels[i].Caption;

}

// switches images with money images depending on unlock state
function ShowPanel(bool bShow)
{
	Super.ShowPanel(bShow);
	if (!bShow)
		return;

	bTDMUnlocked=default.bTDMUnlocked;
	bDOMUnlocked=default.bDOMUnlocked;
	bCTFUnlocked=default.bCTFUnlocked;
	bBRUnlocked=default.bBRUnlocked;

	TutImages[DMIndex].Image = Material(DynamicLoadObject("LadderShots.TeamDMShot", class'Material'));
	TutImages[DOMIndex].Image = Material(DynamicLoadObject("LadderShots.DOMShot", class'Material'));
	TutImages[CTFIndex].Image = Material(DynamicLoadObject("LadderShots.CTFShot", class'Material'));
	TutImages[BRIndex].Image = Material(DynamicLoadObject("LadderShots.BRShot", class'Material'));

	if ( class'Tab_PlayerSettings'.default.bUnlocked )
	{
		TutImages[DMIndex].Image = Material(DynamicLoadObject("LadderShots.TeamDMMoneyShot", class'Material'));
		TutImages[DOMIndex].Image = Material(DynamicLoadObject("LadderShots.DOMMoneyShot", class'Material'));
		TutImages[CTFIndex].Image = Material(DynamicLoadObject("LadderShots.CTFMoneyShot", class'Material'));
		TutImages[BRIndex].Image = Material(DynamicLoadObject("LadderShots.BRMoneyShot", class'Material'));
		return;
	}

	if ( bTDMUnlocked )
		TutImages[DMIndex].Image = Material(DynamicLoadObject("LadderShots.TeamDMMoneyShot", class'Material'));

	if ( bDOMUnlocked )
		TutImages[DOMIndex].Image = Material(DynamicLoadObject("LadderShots.DOMMoneyShot", class'Material'));

	if ( bCTFUnlocked )
		TutImages[CTFIndex].Image = Material(DynamicLoadObject("LadderShots.CTFMoneyShot", class'Material'));

	if ( bBRUnlocked )
		TutImages[BRIndex].Image = Material(DynamicLoadObject("LadderShots.BRMoneyShot", class'Material'));

}


function bool InternalOnClick(GUIComponent Sender)
{
	local string TutorialName;

	if (Sender == TutButtons[DMIndex])
	{
		TutorialName = "TUT-DM";
	}
	else if (Sender == TutButtons[DOMIndex])
	{
		TutorialName = "TUT-DOM";
	}
	else if (Sender == TutButtons[CTFIndex])
	{
		TutorialName = "TUT-CTF";
	}
	else if (Sender == TutButtons[BRIndex])
	{
		TutorialName = "TUT-BR";
	}
	else
		return false;

	if ( PlayerOwner().Level.Game.CurrentGameProfile != none ) {
		PlayerOwner().Level.Game.CurrentGameProfile.bInLadderGame=true;  // so that it'll reload into SP menus
		PlayerOwner().Level.Game.SavePackage(PlayerOwner().Level.Game.CurrentGameProfile.PackageName);
		PlayerOwner().ConsoleCommand ("START"@TutorialName$".ut2?quickstart=true?TeamScreen=false?savegame="$PlayerOwner().Level.Game.CurrentGameProfile.PackageName);
	}
	else
	{
		PlayerOwner().ConsoleCommand ("START"@TutorialName$".ut2?quickstart=true?TeamScreen=false");
	}
	Controller.CloseAll(false);

	return true;
}

// if no gameprofile loaded, or no team, can't show profile
function bool CanShowPanel ()
{
	return Super.CanShowPanel();
}


defaultproperties
{
	Begin Object Class=GUIImage Name=SPTutDM
		//Image=Material'Laddershots.TeamDMShot'
		ImageStyle=ISTY_Stretched
		WinTop=0.05
		WinLeft=0.1
		WinHeight=0.30
		WinWidth=0.30
		X1=0
		Y1=0
		X2=1023
		Y2=767
	End Object
	Begin Object Class=GUIImage Name=SPTutDMB
		Image=Material'InterfaceContent.BorderBoxA1'
		ImageStyle=ISTY_Stretched
		WinWidth=0.304563
		WinHeight=0.305562
		WinLeft=0.097344
		WinTop=0.045846
	End Object
	Begin Object Class=GUILabel Name=SPTutDML
		WinWidth=0.4
		WinHeight=0.1
		WinLeft=0.05
		WinTop=0.35
		TextAlign=TXTA_Center
		StyleName="TextButton"
	End Object
	Begin Object Class=GUIButton Name=SPTutDMButton
		OnClick=InternalOnClick
		StyleName="NoBackground"
		WinWidth=0.4
		WinHeight=0.4
		WinLeft=0.05
		WinTop=0.0333
		bFocusOnWatch=true
	End Object


	Begin Object Class=GUIImage Name=SPTutDOM
		//Image=Material'Laddershots.DOMShot'
		ImageStyle=ISTY_Stretched
		WinTop=0.50
		WinLeft=0.1
		WinHeight=0.3
		WinWidth=0.3
		X1=0
		Y1=0
		X2=1023
		Y2=767
	End Object
	Begin Object Class=GUIImage Name=SPTutDOMB
		Image=Material'InterfaceContent.BorderBoxA1'
		ImageStyle=ISTY_Stretched
		WinWidth=0.303
		WinHeight=0.304
		WinLeft=0.097344
		WinTop=0.495846
	End Object
	Begin Object Class=GUILabel Name=SPTutDOML
		WinWidth=0.4
		WinHeight=0.1
		WinLeft=0.05
		WinTop=0.8
		TextAlign=TXTA_Center
		StyleName="TextButton"
	End Object
	Begin Object Class=GUIButton Name=SPTutDOMButton
		OnClick=InternalOnClick
		StyleName="NoBackground"
		WinWidth=0.4
		WinHeight=0.415
		WinLeft=0.05
		WinTop=0.46666
		bFocusOnWatch=true
	End Object

	Begin Object Class=GUIImage Name=SPTutCTF
		//Image=Material'Laddershots.CTFShot'
		ImageStyle=ISTY_Stretched
		WinTop=0.05
		WinLeft=0.60
		WinHeight=0.3
		WinWidth=0.3
		X1=0
		Y1=0
		X2=1023
		Y2=767
	End Object
	Begin Object Class=GUIImage Name=SPTutCTFB
		Image=Material'InterfaceContent.BorderBoxA1'
		ImageStyle=ISTY_Stretched
		WinWidth=0.303
		WinHeight=0.304
		WinLeft=0.597344
		WinTop=0.045846
	End Object
	Begin Object Class=GUILabel Name=SPTutCTFL
		WinWidth=0.4
		WinHeight=0.1
		WinLeft=0.55
		WinTop=0.35
		TextAlign=TXTA_Center
		StyleName="TextButton"
	End Object
	Begin Object Class=GUIButton Name=SPTutCTFButton
		OnClick=InternalOnClick
		StyleName="NoBackground"
		WinWidth=0.4
		WinHeight=0.4
		WinLeft=0.55
		WinTop=0.03333
		bFocusOnWatch=true
	End Object

	Begin Object Class=GUIImage Name=SPTutBR
		//Image=Material'Laddershots.BRShot'
		ImageStyle=ISTY_Stretched
		WinTop=0.50
		WinLeft=0.60
		WinHeight=0.3
		WinWidth=0.3
		X1=0
		Y1=0
		X2=1023
		Y2=767
	End Object
	Begin Object Class=GUIImage Name=SPTutBRB
		Image=Material'InterfaceContent.BorderBoxA1'
		ImageStyle=ISTY_Stretched
		WinWidth=0.303
		WinHeight=0.304
		WinLeft=0.597344
		WinTop=0.495846
	End Object
	Begin Object Class=GUILabel Name=SPTutBRL
		WinWidth=0.4
		WinHeight=0.1
		WinLeft=0.55
		WinTop=0.8
		TextAlign=TXTA_Center
		StyleName="TextButton"
	End Object
	Begin Object Class=GUIButton Name=SPTutBRButton
		OnClick=InternalOnClick
		StyleName="NoBackground"
		WinWidth=0.4
		WinHeight=0.415
		WinLeft=0.55
		WinTop=0.46666
		bFocusOnWatch=true
	End Object


	Controls(0)=SPTutDM
	Controls(1)=SPTutDMB
	Controls(2)=SPTutDML
	Controls(3)=SPTutDMButton
	Controls(4)=SPTutDOM
	Controls(5)=SPTutDOMB
	Controls(6)=SPTutDOML
	Controls(7)=SPTutDOMButton
	Controls(8)=SPTutCTF
	Controls(9)=SPTutCTFB
	Controls(10)=SPTutCTFL
	Controls(11)=SPTutCTFButton
	Controls(12)=SPTutBR
	Controls(13)=SPTutBRB
	Controls(14)=SPTutBRL
	Controls(15)=SPTutBRButton


	SelectMessage="Click to play tutorial for"

	WinTop=0.15
	WinLeft=0
	WinWidth=1
	WinHeight=0.77
	bAcceptsInput=false
	bFillHeight=true		// get it to fill vertical space from tab top
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Di 5.9.2006 22:36:28.000 - Creation time: Do 14.8.2014 09:58:51.730 - Created with UnCodeX