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 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 |
//============================================================================== // Overview of the enemy teams played against // // Written by Michiel Hendriks // (c) 2003, Epic Games, Inc. All Rights Reserved //============================================================================== class UT2K4SPTab_DetailEnemies extends UT2K4SPTab_Base; var automated GUISectionBackground sbgFoesBG, sbdDetails; var automated GUI2K4MultiColumnListBox mclFoes; var automated GUIImage imgPicture; var automated GUIButton btnOk; var automated GUIScrollTextBox cbDescription; var localized array<string> StrengthLabels; /** local copy, filtered */ var array<UT2K4GameProfile.TeamStatsRecord> TeamStats; var array< class<UT2K4TeamRoster> > TeamRosters; var string TeamDetailPage; var localized string ColumnHeadings[5], msgMembers; var GUIStyles SelStyle; function InitComponent(GUIController MyController, GUIComponent MyOwner) { local int i; Super.Initcomponent(MyController, MyOwner); mclFoes.List.OnDrawItem = OnDrawFoesList; mclFoes.List.ExpandLastColumn = true; mclFoes.List.ColumnHeadings[0] = ColumnHeadings[0]; mclFoes.List.ColumnHeadings[1] = ColumnHeadings[1]; mclFoes.List.ColumnHeadings[2] = ColumnHeadings[2]; mclFoes.List.ColumnHeadings[3] = ColumnHeadings[3]; mclFoes.List.ColumnHeadings[4] = ColumnHeadings[4]; mclFoes.List.InitColumnPerc[0]=0.30; mclFoes.List.InitColumnPerc[1]=0.15; mclFoes.List.InitColumnPerc[2]=0.15; mclFoes.List.InitColumnPerc[3]=0.20; mclFoes.List.InitColumnPerc[4]=0.20; if (GP != none) { for (i = 0; i < GP.TeamStats.Length; i++) { if ((GP.TeamStats[i].Matches > 0) && (GP.TeamStats[i].Name != "")) { TeamStats.Length = TeamStats.Length+1; TeamStats[TeamStats.length - 1] = GP.TeamStats[i]; TeamStats[TeamStats.length - 1].Level = (TeamStats[TeamStats.length - 1].Level + StrengthLabels.length) % StrengthLabels.length; // fix level TeamRosters.Length = TeamStats.Length; TeamRosters[TeamStats.length - 1] = class<UT2K4TeamRoster>(DynamicLoadObject(GP.TeamStats[i].Name, class'Class')); if (TeamRosters[TeamStats.length - 1] == none) { Warn("Failed spawning UT2K4TeamRoster:"@GP.TeamStats[i].Name); } mclFoes.List.AddedItem(); } } } mclFoes.List.SortList(); mclFoes.List.OnChange = OnTeamSelect; SelStyle = Controller.GetStyle(mclFoes.SelectedStyleName, mclFoes.FontScale); } function OnDrawFoesList(Canvas Canvas, int i, float X, float Y, float W, float H, bool bSelected, bool bPending) { local float CellLeft, CellWidth; local float XL, YL; local GUIStyles curstyle; if( bSelected ) { SelStyle.Draw(Canvas,MSAT_Pressed, X, Y-2, W, H+2 ); curstyle = SelStyle; } else curstyle = mclFoes.List.Style; i = mclFoes.List.SortData[i].SortItem; if (TeamRosters[i] == none) return; mclFoes.List.GetCellLeftWidth( 0, CellLeft, CellWidth ); curstyle.DrawText( Canvas, mclFoes.List.MenuState, CellLeft, Y, CellWidth, H, TXTA_Left, TeamRosters[i].default.TeamName, mclFoes.List.FontScale ); mclFoes.List.GetCellLeftWidth( 1, CellLeft, CellWidth ); curstyle.TextSize(Canvas, mclFoes.List.MenuState, string(TeamStats[i].Matches), XL, YL, mclFoes.List.FontScale); if (CellLeft + XL <= mclFoes.List.ActualLeft() + mclFoes.List.ActualWidth()) curstyle.DrawText( Canvas, mclFoes.List.MenuState, CellLeft, Y, CellWidth, H, TXTA_Left, string(TeamStats[i].Matches), mclFoes.List.FontScale ); mclFoes.List.GetCellLeftWidth( 2, CellLeft, CellWidth ); curstyle.TextSize(Canvas, mclFoes.List.MenuState, string(TeamStats[i].Won), XL, YL, mclFoes.List.FontScale); if (CellLeft + XL <= mclFoes.List.ActualLeft() + mclFoes.List.ActualWidth()) curstyle.DrawText( Canvas, mclFoes.List.MenuState, CellLeft, Y, CellWidth, H, TXTA_Left, string(TeamStats[i].Won), mclFoes.List.FontScale ); mclFoes.List.GetCellLeftWidth( 3, CellLeft, CellWidth ); curstyle.TextSize(Canvas, mclFoes.List.MenuState, string(TeamStats[i].Rating), XL, YL, mclFoes.List.FontScale); if (CellLeft + XL <= mclFoes.List.ActualLeft() + mclFoes.List.ActualWidth()) curstyle.DrawText( Canvas, mclFoes.List.MenuState, CellLeft, Y, CellWidth, H, TXTA_Left, string(TeamStats[i].Rating), mclFoes.List.FontScale ); mclFoes.List.GetCellLeftWidth( 4, CellLeft, CellWidth ); curstyle.TextSize(Canvas, mclFoes.List.MenuState, StrengthLabels[TeamStats[i].Level], XL, YL, mclFoes.List.FontScale); if (CellLeft + XL <= mclFoes.List.ActualLeft() + mclFoes.List.ActualWidth()) curstyle.DrawText( Canvas, mclFoes.List.MenuState, CellLeft, Y, CellWidth, H, TXTA_Left, StrengthLabels[TeamStats[i].Level], mclFoes.List.FontScale ); } function onCmFoesClick(GUIContextMenu Sender, int ClickIndex) { local int i; if (ClickIndex == 0) { i = mclFoes.List.SortData[mclFoes.List.Index].SortItem; if (TeamStats.length > 0) Controller.OpenMenu(TeamDetailPage, TeamStats[i].Name); } } function string mclFoesOnGetSortString(GUIComponent Sender, int item, int column) { local string s; switch (column) { case 0: s = TeamRosters[item].default.TeamName; break; case 1: s = string(TeamStats[item].Matches); PadLeft(S, 5, "0"); break; case 2: s = string(TeamStats[item].Won); PadLeft(S, 5, "0"); break; case 3: s = string(TeamStats[item].Rating*1000+100000); break; case 4: s = string(TeamStats[item].Level); PadLeft(S, 5, "0"); break; } return s; } function OnTeamSelect(GUIComponent Sender) { local int i; i = mclFoes.List.SortData[mclFoes.List.Index].SortItem; if (i < TeamStats.length && i > -1) ShowTeamDetails(TeamStats[i].Name); } /** Param1 is the fully qualified name for the team */ function ShowTeamDetails(string TeamName) { local class<UT2K4TeamRoster> ETI; local array<string> TeamMembers; local string TeamDesc; ETI = class<UT2K4TeamRoster>(DynamicLoadObject(TeamName, class'Class')); if (ETI == none) { Warn(TeamName@"is not a valid subclass of UT2K4TeamRoster"); return; } sbdDetails.Caption = ETI.default.TeamName; if (ETI.default.TeamSymbolName != "") imgPicture.Image = Material(DynamicLoadObject(ETI.default.TeamSymbolName, class'Material', true)); if (!GP.GetAltTeamRoster(TeamName, TeamMembers)) TeamMembers = ETI.default.RosterNames; TeamDesc = ETI.default.TeamDescription; if (TeamMembers.length != 0) TeamDesc @= "||"$msgMembers@Joinarray(TeamMembers, ", ", true); cbDescription.SetContent(TeamDesc); if (ETI.default.VoiceOver != none) PlayerOwner().PlayOwnedSound(ETI.default.VoiceOver, SLOT_Interface, 1.0); else if (ETI.default.TeamNameSound != none) PlayerOwner().PlayOwnedSound(ETI.default.TeamNameSound, SLOT_Interface, 1.0); } defaultproperties { Begin Object Class=GUISectionBackground Name=SPPsbgFoesBG Caption="Enemy Teams" WinTop=0.616587 WinLeft=0.080000 WinWidth=0.827500 WinHeight=0.356249 bBoundToParent=Wahr OnPreDraw=SPPsbgFoesBG.InternalPreDraw End Object sbgFoesBG=GUISectionBackground'GUI2K4.UT2K4SPTab_DetailEnemies.SPPsbgFoesBG' Begin Object Class=AltSectionBackground Name=SPPsbdDetails WinTop=0.036500 WinLeft=0.082750 WinWidth=0.820751 WinHeight=0.552000 bBoundToParent=Wahr OnPreDraw=SPPsbdDetails.InternalPreDraw End Object sbdDetails=AltSectionBackground'GUI2K4.UT2K4SPTab_DetailEnemies.SPPsbdDetails' Begin Object Class=GUI2K4MultiColumnListBox Name=SPDEmclFoes OnGetSortString=UT2K4SPTab_DetailEnemies.mclFoesOnGetSortString SelectedStyleName="ListSelection" bVisibleWhenEmpty=Wahr OnCreateComponent=SPDEmclFoes.InternalOnCreateComponent StyleName="ServerBrowserGrid" WinTop=0.675411 WinLeft=0.097832 WinWidth=0.791837 WinHeight=0.267856 RenderWeight=0.200000 bBoundToParent=Wahr OnChange=UT2K4SPTab_DetailEnemies.OnTeamSelect End Object mclFoes=GUI2K4MultiColumnListBox'GUI2K4.UT2K4SPTab_DetailEnemies.SPDEmclFoes' Begin Object Class=GUIImage Name=SPDTimgPicture ImageStyle=ISTY_Justified ImageAlign=IMGA_Center WinTop=0.105163 WinLeft=0.101276 WinWidth=0.318878 WinHeight=0.417091 RenderWeight=0.300000 bBoundToParent=Wahr End Object imgPicture=GUIImage'GUI2K4.UT2K4SPTab_DetailEnemies.SPDTimgPicture' Begin Object Class=GUIScrollTextBox Name=SPDTcbDescription bNoTeletype=Wahr bVisibleWhenEmpty=Wahr OnCreateComponent=SPDTcbDescription.InternalOnCreateComponent WinTop=0.108998 WinLeft=0.431123 WinWidth=0.456249 WinHeight=0.412500 bBoundToParent=Wahr End Object cbDescription=GUIScrollTextBox'GUI2K4.UT2K4SPTab_DetailEnemies.SPDTcbDescription' StrengthLabels(0)="Weak" StrengthLabels(1)="Tough" StrengthLabels(2)="Strong" StrengthLabels(3)="Godlike" StrengthLabels(4)="Phantom" TeamDetailPage="GUI2K4.UT2K4SP_DetailsTeam" ColumnHeadings(0)="Name" ColumnHeadings(1)="Matches" ColumnHeadings(2)="They won" ColumnHeadings(3)="Rating" ColumnHeadings(4)="Strength" msgMembers="Members:" PanelCaption="Opponent Teams" Begin Object Class=GUIContextMenu Name=SPDEcmFoes ContextItems(0)="Team details" OnSelect=UT2K4SPTab_DetailEnemies.onCmFoesClick End Object ContextMenu=GUIContextMenu'GUI2K4.UT2K4SPTab_DetailEnemies.SPDEcmFoes' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |