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 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 00321 00322 00323 00324 00325 00326 00327 00328 00329 00330 00331 00332 00333 00334 00335 00336 00337 00338 00339 00340 00341 00342 00343 00344 00345 00346 00347 00348 00349 00350 00351 00352 00353 00354 00355 00356 00357 00358 00359 00360 00361 00362 00363 00364 00365 00366 00367 00368 00369 00370 00371 00372 00373 00374 00375 00376 00377 00378 00379 00380 00381 00382 00383 00384 00385 00386 00387 00388 00389 00390 00391 00392 00393 00394 00395 00396 00397 00398 00399 00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419 00420 00421 00422 00423 00424 00425 00426 00427 00428 00429 00430 00431 00432 00433 00434 00435 00436 00437 00438 00439 00440 00441 00442 00443 00444 00445 00446 00447 00448 00449 00450 00451 00452 00453 00454 00455 00456 00457 00458 00459 00460 00461 00462 00463 00464 00465 00466 00467 00468 00469 00470 00471 00472 00473 00474 00475 00476 00477 00478 00479 00480 00481 00482 00483 00484 00485 00486 00487 00488 00489 00490 00491 00492 00493 00494 00495 00496 00497 00498 00499 00500 00501 00502 00503 00504 00505 00506 00507 00508 |
//============================================================================== // Exports the profile to a text file // // Written by Michiel Hendriks // (c) 2003, Epic Games, Inc. All Rights Reserved //============================================================================== class SPProfileExporter extends Object; var string ResultFile; var protected string FileName; var protected string FileExt; var protected UT2K4GameProfile GP; var protected FileLog Output; var protected LevelInfo Level; function bool Create(UT2K4GameProfile myGP, LevelInfo myLevel, optional string myFilename, optional string myExt) { GP = myGP; Level = myLevel; if (myFilename != "") filename = myFilename; filename = FormatString(filename); if (myExt != "") FileExt = MyExt; return (GP != none) && (Level != none); } function ExportProfile() { if (!(GP != none) && (Level != none)) return; Output = Level.spawn(class'FileLog'); Output.OpenLog(FileName, FileExt, true); ResultFile = Output.LogFileName; expHeader(); expBody(); expFooter(); Output.CloseLog(); } /** export the header */ protected function expHeader() { output.Logf("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">"); output.Logf("<html><head>"); output.Logf("<title>UT2004 Exported Single Player Details -"@GP.PackageName@"</title>"); output.Logf("<meta name=\"Generator\" content=\"UnrealEngine2 build "$Level.EngineVersion$" - exporter: "$string(self.Class)$"\">"); expStyle(); output.Logf("</head><body>"); output.Logf("<div class=\"title\">UT2004 Exported Profile</div>"); output.Logf("<table class=\"tabpages\">"); output.Logf("<colgroup><col width=\"1*\"><col width=\"1*\"><col width=\"1*\"><col width=\"1*\"><col width=\"1*\"><col width=\"1*\"><col width=\"1*\"></colgroup>"); output.Logf("<tr>"); output.Logf("<td class=\"tab\" id=\"a_d_basic\" onclick=\"showDiv('d_basic');\" onmouseover=\"tabHover('a_d_basic', true);\" onmouseout=\"tabHover('a_d_basic', false);\">Basic</td>"); output.Logf("<td class=\"tab\" id=\"a_d_awards\" onclick=\"showDiv('d_awards');\" onmouseover=\"tabHover('a_d_awards', true);\" onmouseout=\"tabHover('a_d_awards', false);\">Awards</td>"); output.Logf("<td class=\"tab\" id=\"a_d_ladders\" onclick=\"showDiv('d_ladders');\" onmouseover=\"tabHover('a_d_ladders', true);\" onmouseout=\"tabHover('a_d_ladders', false);\">Ladders</td>"); output.Logf("<td class=\"tab\" id=\"a_d_botstats\" onclick=\"showDiv('d_botstats');\" onmouseover=\"tabHover('a_d_botstats', true);\" onmouseout=\"tabHover('a_d_botstats', false);\">Bot stats</td>"); output.Logf("<td class=\"tab\" id=\"a_d_teamstats\" onclick=\"showDiv('d_teamstats');\" onmouseover=\"tabHover('a_d_teamstats', true);\" onmouseout=\"tabHover('a_d_teamstats', false);\">Team stats</td>"); output.Logf("<td class=\"tab\" id=\"a_d_lastmatch\" onclick=\"showDiv('d_lastmatch');\" onmouseover=\"tabHover('a_d_lastmatch', true);\" onmouseout=\"tabHover('a_d_lastmatch', false);\">Last match</td>"); output.Logf("<td class=\"tab\" id=\"a_d_history\" onclick=\"showDiv('d_history');\" onmouseover=\"tabHover('a_d_history', true);\" onmouseout=\"tabHover('a_d_history', false);\">Fight history</td>"); output.Logf("</tr>"); output.Logf("</table>"); } /** write inline style */ protected function expStyle() { output.Logf("<style>"); output.Logf("BODY { font-family: sans-serif; color: white; background-color: midnightblue; }"); output.Logf("TABLE { border: 2px outset navy; text-align: center; width: 100%; }"); output.Logf("TH { color: gold; font-size: smaller; text-align: center; }"); output.Logf("TD { vertical-align: top; border: 1px inset navy; empty-cells: show; padding: 2px; text-align: center; }"); output.Logf("TD.right { text-align: right; }"); output.Logf("DIV.title { font-size: xx-large; width: 100%; border: 3px outset gold; text-align: center; font-weight: bold; background-color: gold; color: midnightblue; margin-bottom: 10px; }"); output.Logf("H1 { border-bottom: 2px solid gold; text-align: center; }"); output.Logf("H2 { border-bottom: 2px solid gold; text-align: center; }"); output.Logf("H3 { border-bottom: 1px solid gold; text-align: center; }"); output.Logf("TR:Hover { background-color: navy; }"); output.Logf("DIV.hidden { visibility: hidden; position: absolute; width: 75%; margin-left: 12.5%; }"); output.Logf("TABLE.tabpages { border: none; }"); output.Logf("TD.tab { vertical-align: top; border: 2px outset navy; padding: 2px; background-color: midnightblue; cursor: pointer; }"); output.Logf("TD.tab_hover { border: 2px outset gold; background-color: navy; cursor: pointer; }"); output.Logf("TD.activetab { vertical-align: top; border: 2px outset gold; padding: 2px; background-color: gold; color: navy; cursor: default; }"); output.Logf("</style>"); } /** export the footer */ protected function expFooter() { output.Logf("<script language=\"javascript\">"); output.Logf("curtd = null;"); output.Logf("curlb = null;"); output.Logf("function showDiv(divname)"); output.Logf("{"); output.Logf(" seltd = document.getElementById(divname);"); output.Logf(" if (curtd && seltd == curtd) return;"); output.Logf(" seltd.style.visibility = 'visible';"); output.Logf(" if (curtd) curtd.style.visibility = 'hidden';"); output.Logf(" curtd = seltd;"); output.Logf(" seltb = document.getElementById(\"a_\"+divname);"); output.Logf(" seltb.className = \"activetab\";"); output.Logf(" if (curlb) curlb.className = \"tab\";"); output.Logf(" curlb = seltb;"); output.Logf("}"); output.Logf("function tabHover(divname, active)"); output.Logf("{"); output.Logf(" hovertd = document.getElementById(divname);"); output.Logf(" if (hovertd == curlb) return;"); output.Logf(" if (hovertd) "); output.Logf(" {"); output.Logf(" if (active) hovertd.className = \"tab_hover\""); output.Logf(" else hovertd.className = \"tab\";"); output.Logf(" }"); output.Logf("}"); output.Logf("showDiv(\"d_basic\");"); output.Logf("</script>"); output.Logf("</body></html>"); } /** export all the content */ protected function expBody() { expBasic(); expSprees(); expMultiKills(); expSpecialAwards(); expLadderStatus(); expBotstats(); expTeamstats(); expLastmatch(); expOtherMatches(); expHistory(); } protected function expBasic() { output.Logf("<div id=\"d_basic\" class=\"hidden\">"); output.Logf("<h1>Profile</h1>"); output.Logf("<table id=\"t_basic\">"); output.Logf("<tr id=\"b_profile\"><td>Profile name</td><td>"@GP.PackageName@"</td></tr>"); output.Logf("<tr id=\"b_name\"><td>Player name</td><td>"@GP.PlayerName@"</td></tr>"); output.Logf("<tr id=\"b_difficulty\"><td>Difficulty</td><td>"@GP.BaseDifficulty@"</td></tr>"); if (GP.IsCheater()) output.logf("<tr id=\"b_cheated\"><td>CHEATED</td><td>true</td></tr>"); output.Logf("<tr id=\"b_character\"><td>Character</td><td>"@GP.PlayerCharacter@"</td></tr>"); output.Logf("<tr id=\"b_teamname\"><td>Team name</td><td>"@GP.TeamName@"</td></tr>"); output.Logf("<tr id=\"b_teammembers\"><td>Team members</td><td>"@JoinArray(GP.PlayerTeam, "<br />", true)@"</td></tr>"); output.Logf("<tr id=\"b_balance\"><td>Balance</td><td class=\"right\">"@GP.MoneyToString(GP.Balance)@"</td></tr>"); output.Logf("<tr id=\"b_matches\"><td>Matches</td><td class=\"right\">"@GP.matches@"</td></tr>"); output.Logf("<tr id=\"b_wins\"><td>Wins</td><td class=\"right\">"@GP.wins@"</td></tr>"); output.Logf("<tr id=\"b_kills\"><td>Kills</td><td class=\"right\">"@GP.kills@"</td></tr>"); output.Logf("<tr id=\"b_deaths\"><td>Deaths</td><td class=\"right\">"@GP.deaths@"</td></tr>"); output.Logf("</table>"); output.Logf("</div>"); } protected function expSprees() { output.Logf("<div id=\"d_awards\" class=\"hidden\">"); output.Logf("<h1>Killing sprees</h1>"); output.Logf("<table id=\"t_sprees\">"); output.Logf("<tr id=\"ks_spree\"><td>Killing Spree</td><td class=\"right\">"@GP.spree[0]@"</td></tr>"); output.Logf("<tr id=\"ks_rampage\"><td>Rampage</td><td class=\"right\">"@GP.spree[1]@"</td></tr>"); output.Logf("<tr id=\"ks_dominating\"><td>Dominating</td><td class=\"right\">"@GP.spree[2]@"</td></tr>"); output.Logf("<tr id=\"ks_unstoppable\"><td>Unstoppable</td><td class=\"right\">"@GP.spree[3]@"</td></tr>"); output.Logf("<tr id=\"ks_godlike\"><td>GODLIKE</td><td class=\"right\">"@GP.spree[4]@"</td></tr>"); output.Logf("<tr id=\"ks_wickedsick\"><td>WICKED SICK</td><td class=\"right\">"@GP.spree[5]@"</td></tr>"); output.Logf("</table>"); } protected function expMultiKills() { output.Logf("<h1>Multi kills</h1>"); output.Logf("<table id=\"t_multikills\">"); output.Logf("<tr id=\"mk_double\"><td>Double Kill</td><td class=\"right\">"@GP.MultiKills[0]@"</td></tr>"); output.Logf("<tr id=\"mk_multi\"><td>MultiKill</td><td class=\"right\">"@GP.MultiKills[1]@"</td></tr>"); output.Logf("<tr id=\"mk_mega\"><td>MegaKill</td><td class=\"right\">"@GP.MultiKills[2]@"</td></tr>"); output.Logf("<tr id=\"mk_ultra\"><td>UltraKill</td><td class=\"right\">"@GP.MultiKills[3]@"</td></tr>"); output.Logf("<tr id=\"mk_monster\"><td>MONSTER KILL</td><td class=\"right\">"@GP.MultiKills[4]@"</td></tr>"); output.Logf("<tr id=\"mk_ludicrous\"><td>LUDICROUS KILL</td><td class=\"right\">"@GP.MultiKills[5]@"</td></tr>"); output.Logf("<tr id=\"mk_holyshit\"><td>HOLY SHIT</td><td class=\"right\">"@GP.MultiKills[6]@"</td></tr>"); output.Logf("</table>"); } protected function expSpecialAwards() { output.Logf("<h1>Special awards</h1>"); output.Logf("<table id=\"t_awards\">"); output.Logf("<tr id=\"sa_monkey\"><td>Flak Monkey</td><td class=\"right\">"@GP.SpecialAwards[0]@"</td></tr>"); output.Logf("<tr id=\"sa_whore\"><td>Combo Whore</td><td class=\"right\">"@GP.SpecialAwards[1]@"</td></tr>"); output.Logf("<tr id=\"sa_hunter\"><td>Head Hunter</td><td class=\"right\">"@GP.SpecialAwards[2]@"</td></tr>"); output.Logf("<tr id=\"sa_rampage\"><td>Road Rampage</td><td class=\"right\">"@GP.SpecialAwards[3]@"</td></tr>"); output.Logf("<tr id=\"sa_trick\"><td>Hat Trick</td><td class=\"right\">"@GP.SpecialAwards[4]@"</td></tr>"); output.Logf("<tr id=\"sa_untouchable\"><td>Untouchable</td><td class=\"right\">"@GP.SpecialAwards[5]@"</td></tr>"); output.Logf("</table>"); output.Logf("</div>"); } protected function expLadderStatus() { local int i; local class<CustomLadderInfo> cl; output.Logf("<div id=\"d_ladders\" class=\"hidden\">"); output.Logf("<h1>Ladder status</h1>"); output.Logf("<table id=\"t_ladders\">"); if (GP.LadderProgress[GP.UT2K4GameLadder.default.LID_DM] > -1) output.Logf("<tr id=\"ls_qualification\"><td>Qualification</td><td class=\"right\">"$(GP.LadderProgress[GP.UT2K4GameLadder.default.LID_DM]*100/GP.LengthOfLadder(GP.UT2K4GameLadder.default.LID_DM))$"%</td></tr>"); else output.Logf("<tr id=\"ls_qualification\"><td>Qualification</td><td>locked</td></tr>"); if (GP.LadderProgress[GP.UT2K4GameLadder.default.LID_TDM] > -1) output.Logf("<tr id=\"ls_teamqualification\"><td>Team Qualification</td><td class=\"right\">"$(GP.LadderProgress[GP.UT2K4GameLadder.default.LID_TDM]*100/GP.LengthOfLadder(GP.UT2K4GameLadder.default.LID_TDM))$"%</td></tr>"); else output.Logf("<tr id=\"ls_teamqualification\"><td>Team Qualification</td><td>locked</td></tr>"); if (GP.LadderProgress[GP.UT2K4GameLadder.default.LID_CTF] > -1) output.Logf("<tr id=\"ls_ctf\"><td>Capture The Flag</td><td class=\"right\">"$(GP.LadderProgress[GP.UT2K4GameLadder.default.LID_CTF]*100/GP.LengthOfLadder(GP.UT2K4GameLadder.default.LID_CTF))$"%</td></tr>"); else output.Logf("<tr id=\"ls_ctf\"><td>Capture The Flag</td><td>locked</td></tr>"); if (GP.LadderProgress[GP.UT2K4GameLadder.default.LID_BR] > -1) output.Logf("<tr id=\"ls_br\"><td>Bombing Run</td><td class=\"right\">"$(GP.LadderProgress[GP.UT2K4GameLadder.default.LID_BR]*100/GP.LengthOfLadder(GP.UT2K4GameLadder.default.LID_BR))$"%</td></tr>"); else output.Logf("<tr id=\"ls_br\"><td>Bombing Run</td><td>locked</td></tr>"); if (GP.LadderProgress[GP.UT2K4GameLadder.default.LID_DOM] > -1) output.Logf("<tr id=\"ls_dom\"><td>Double Domination</td><td class=\"right\">"$(GP.LadderProgress[GP.UT2K4GameLadder.default.LID_DOM]*100/GP.LengthOfLadder(GP.UT2K4GameLadder.default.LID_DOM))$"%</td></tr>"); else output.Logf("<tr id=\"ls_dom\"><td>Double Domination</td><td>locked</td></tr>"); if (GP.LadderProgress[GP.UT2K4GameLadder.default.LID_AS] > -1) output.Logf("<tr id=\"ls_as\"><td>Assault</td><td class=\"right\">"$(GP.LadderProgress[GP.UT2K4GameLadder.default.LID_AS]*100/GP.LengthOfLadder(GP.UT2K4GameLadder.default.LID_AS))$"%</td></tr>"); else output.Logf("<tr id=\"ls_as\"><td>Assault</td><td>locked</td></tr>"); if (GP.LadderProgress[GP.UT2K4GameLadder.default.LID_CHAMP] > -1) output.Logf("<tr id=\"ls_champ\"><td>Championship</td><td class=\"right\">"$(GP.LadderProgress[GP.UT2K4GameLadder.default.LID_CHAMP]*100/GP.LengthOfLadder(GP.UT2K4GameLadder.default.LID_CHAMP))$"%</td></tr>"); else output.Logf("<tr id=\"ls_champ\"><td>Championship</td><td>locked</td></tr>"); if (GP.CustomLadders.Length > 0) { output.Logf("<tr><td colspan=\"2\">Additional ladders</tr></td>"); for (i = 0; i < GP.CustomLadders.Length; i++) { cl = class<CustomLadderInfo>(DynamicLoadObject(GP.CustomLadders[i].LadderClass, class'Class')); if (cl != none) { output.Logf("<tr id=\"lsc_"$repl(GP.CustomLadders[i].LadderClass, ".", "_")$"\"><td>"$cl.default.LadderName$"</td><td class=\"right\">"$(GP.CustomLadders[i].progress*100/cl.default.Matches.Length)$"%</td></tr>"); } else { output.Logf("<tr id=\"lsc_"$repl(GP.CustomLadders[i].LadderClass, ".", "_")$"\"><td>"$GP.CustomLadders[i].LadderClass$"</td><td>"$GP.CustomLadders[i].progress@"matches</td></tr>"); } } } output.Logf("</table>"); output.Logf("</div>"); } protected function expBotstats() { local int i; output.Logf("<div id=\"d_botstats\" class=\"hidden\">"); output.Logf("<h1>Bot stats</h1>"); output.Logf("<table id=\"t_botstats\">"); output.Logf("<tr><th>Name</th><th>Price</th><th>Health</th><th>Team ID</th><tr>"); for (i = 0; i < GP.BotStats.length; i++) { output.Logf("<tr id=\"bs_"$repl(GP.BotStats[i].Name, ".", "_")$"\"><td>"$GP.BotStats[i].Name$"</td><td class=\"right\">"$GP.MoneyToString(GP.BotStats[i].Price)$"</td><td class=\"right\">"$GP.BotStats[i].Health$"%</td><td class=\"right\">"$GP.BotStats[i].TeamId$"</td></tr>"); } output.Logf("</table>"); output.Logf("</div>"); } protected function expTeamstats() { local int i; local string tmp; output.Logf("<div id=\"d_teamstats\" class=\"hidden\">"); output.Logf("<h1>Team stats</h1>"); output.Logf("<table id=\"t_teamstats\">"); output.Logf("<tr><th>ID</th><th>Name</th><th>Matches</th><th>Lost from</th><th>Rating</th><th>Level</th><th>Roster</th><tr>"); for (i = 0; i < GP.TeamStats.length; i++) { if (GP.TeamStats[i].Name == "") continue; output.Logf("<tr id=\"ts_"$repl(GP.TeamStats[i].Name, ".", "_")$"\"><td class=\"right\">"$i$"</td><td>"$getTeamName(GP.TeamStats[i].Name, tmp)$"</td><td class=\"right\">"$GP.TeamStats[i].Matches$"</td><td class=\"right\">"$GP.TeamStats[i].Won$"</td><td class=\"right\">"$GP.TeamStats[i].Rating$"</td><td class=\"right\">"$GP.TeamStats[i].Level$"</td><td>"$tmp$"</td></tr>"); } output.Logf("</table>"); output.Logf("</div>"); } protected function expLastmatch() { local int i; local string tmp; output.Logf("<div id=\"d_lastmatch\" class=\"hidden\">"); output.Logf("<h1>Last match</h1>"); output.Logf("<table id=\"t_lastmatch_basic\">"); output.Logf("<tr id=\"lm_gametype\"><td>Game type</td><td>"$GP.lmdGameType$"</td></tr>"); output.Logf("<tr id=\"lm_map\"><td>Map</td><td>"$GP.lmdMap$"</td></tr>"); output.Logf("<tr id=\"lm_won\"><td>Won match</td><td>"$GP.lmdWonMatch$"</td></tr>"); output.Logf("<tr id=\"lm_time\"><td>Game time</td><td>"$(GP.lmdGameTime/60)@"minutes</td></tr>"); output.Logf("<tr id=\"lm_prize\"><td>Prize money</td><td>"$GP.MoneyToString(GP.lmdPrizeMoney)$"</td></tr>"); output.Logf("<tr id=\"lm_bonus\"><td>Total bonus money</td><td>"$GP.MoneyToString(GP.lmdTotalBonusMoney)$"</td></tr>"); output.Logf("<tr id=\"lm_balance\"><td>Balance change</td><td>"$GP.MoneyToString(GP.lmdBalanceChange)$"</td></tr>"); if (GP.lmdInjury > -1) { output.Logf("<tr id=\"lm_injured\"><td>Injured team mate</td><td>"$GP.BotStats[GP.lmdInjury].Name$"</td></tr>"); output.Logf("<tr id=\"lm_injury_health\"><td>Injury health</td><td>"$GP.lmdInjuryHealth$"</td></tr>"); output.Logf("<tr id=\"lm_treatment\"><td>Injury treatment</td><td>"$GP.MoneyToString(GP.lmdInjuryTreatment)$"</td></tr>"); } output.Logf("</table>"); if (GP.PayCheck.length > 0) { output.Logf("<h2>Pay check overview</h2>"); output.Logf("<table id=\"t_lastmatch_paycheck\">"); output.Logf("<tr><th>Name</th><th>Payment</th></tr>"); for (i = 0; i < GP.PayCheck.length; i++) { output.Logf("<tr id=\"lmp_"$repl(GP.BotStats[GP.PayCheck[i].BotId].Name, ".", "_")$"\"><td>"$GP.BotStats[GP.PayCheck[i].BotId].Name$"</td><td class=\"right\">"$GP.MoneyToString(GP.PayCheck[i].Payment)$"</td></tr>"); } output.Logf("</table>"); } output.Logf("<h2>Last match player overview</h2>"); output.Logf("<table id=\"t_lastmatch_overview\">"); output.Logf("<tr><th>Name</th><th>Kills</th><th>Score</th><th>Deaths</th><th>Special Awards</th></tr>"); if (GP.lmdTeamGame) { output.Logf("<tr><th colspan=\"5\">"$GP.TeamName$"</th></tr>"); for (i = 0; i < GP.PlayerMatchDetails.length; i++) { if (GP.PlayerMatchDetails[i].Team == GP.lmdMyTeam) { output.Logf("<tr id=\"lmd_"$repl(GP.PlayerMatchDetails[i].Name, ".", "_")$"\"><td>"$GP.PlayerMatchDetails[i].Name$"</td><td class=\"right\">"$GP.PlayerMatchDetails[i].Kills$"</td><td class=\"right\">"$GP.PlayerMatchDetails[i].Score$"</td><td class=\"right\">"$GP.PlayerMatchDetails[i].Deaths$"</td><td>"$JoinArray(GP.PlayerMatchDetails[i].SpecialAwards, ", ")$"</td></tr"); } } output.Logf("<tr><th colspan=\"5\">"$getTeamName(GP.lmdEnemyTeam, tmp)$"</th></tr>"); for (i = 0; i < GP.PlayerMatchDetails.length; i++) { if (GP.PlayerMatchDetails[i].Team != GP.lmdMyTeam) { output.Logf("<tr id=\"lmd_"$repl(GP.PlayerMatchDetails[i].Name, ".", "_")$"\"><td>"$GP.PlayerMatchDetails[i].Name$"</td><td class=\"right\">"$GP.PlayerMatchDetails[i].Kills$"</td><td class=\"right\">"$GP.PlayerMatchDetails[i].Score$"</td><td class=\"right\">"$GP.PlayerMatchDetails[i].Deaths$"</td><td>"$JoinArray(GP.PlayerMatchDetails[i].SpecialAwards, ", ")$"</td></tr"); } } } else { for (i = 0; i < GP.PlayerMatchDetails.length; i++) { output.Logf("<tr id=\"lmd_"$repl(GP.PlayerMatchDetails[i].Name, ".", "_")$"\"><td>"$GP.PlayerMatchDetails[i].Name$"</td><td class=\"right\">"$GP.PlayerMatchDetails[i].Kills$"</td><td class=\"right\">"$GP.PlayerMatchDetails[i].Score$"</td><td class=\"right\">"$GP.PlayerMatchDetails[i].Deaths$"</td><td>"$JoinArray(GP.PlayerMatchDetails[i].SpecialAwards, ", ")$"</td></tr"); } } output.Logf("</table>"); } protected function expOtherMatches() { local int i; local string tmp; local UT2K4MatchInfo MI; if (GP.PhantomMatches.length <= 0) { output.Logf("</div>"); return; } output.Logf("<h2>Other tournament matches</h2>"); output.Logf("<table id=\"t_othermatches\">"); for (i = 0; i < GP.PhantomMatches.length; i++) { output.Logf("<tr id=\"om_"$i$"_vs\"><th>"$getTeamName(GP.TeamStats[GP.PhantomMatches[i].Team1].Name, tmp)@"</th><td>vs</td><th>"@getTeamName(GP.TeamStats[GP.PhantomMatches[i].Team2].Name, tmp)$"</th><tr>"); MI = UT2K4MatchInfo(GP.getMatchInfo(GP.PhantomMatches[i].LadderId, GP.PhantomMatches[i].MatchId)); output.Logf("<tr id=\"om_"$i$"_game\"><td colspan=\"3\">"$GP.GetLadderDescription(GP.PhantomMatches[i].LadderId, GP.PhantomMatches[i].MatchId)@"in"@MI.LevelName$"</td></tr>"); output.Logf("<tr id=\"om_"$i$"_score\"><td colspan=\"3\">Score"@int(round(GP.PhantomMatches[i].ScoreTeam1))@"-"@int(round(GP.PhantomMatches[i].ScoreTeam2))$"</td></tr>"); output.Logf("<tr id=\"om_"$i$"_time\"><td colspan=\"3\">Game time"@(GP.PhantomMatches[i].GameTime/60)@"minutes</td></tr>"); } output.Logf("</table>"); output.Logf("</div>"); } protected function expHistory() { local int i; local array<string> tmpa; local string tmp; if (GP.FightHistory.Length == 0) return; output.Logf("<div id=\"d_history\" class=\"hidden\">"); output.Logf("<h1>Fight history</h1>"); for (i = 0; i < GP.FightHistory.Length; i++) { output.Logf("<table id=\"history_"$i$"\">"); output.Logf("<tr id=\"his_date_"$i$"\"><th colspan=\"2\">"$GP.FightHistory[i].Date[0]$"-"$Right("0"$GP.FightHistory[i].Date[1], 2)$"-"$Right("0"$GP.FightHistory[i].Date[2], 2)$" "$Right("0"$GP.FightHistory[i].Time[0], 2)$":"$Right("0"$GP.FightHistory[i].Time[1], 2)$"</th></tr>"); split(GP.FightHistory[i].MatchData, ";", tmpa); output.Logf("<tr id=\"his_matchtype_"$i$"\"><td>"$tmpa[0]$"</td><td>"$tmpa[1]$"</td></tr>"); if (GP.FightHistory[i].MatchExtra != "") output.Logf("<tr id=\"his_matchdata_"$i$"\"><td>Additional info</td><td>"$GP.FightHistory[i].MatchExtra$"</td></tr>"); output.Logf("<tr id=\"his_gametype_"$i$"\"><td>Game type</td><td>"$getGameTypeString(GP.FightHistory[i].GameType)@"</td></tr>"); output.Logf("<tr id=\"his_level_"$i$"\"><td>Map</td><td>"$GP.FightHistory[i].Level$"</td></tr>"); output.Logf("<tr id=\"his_prize_"$i$"\"><td>Prize money</td><td>"$GP.MoneyToString(GP.FightHistory[i].PriceMoney)$"</td></tr>"); output.Logf("<tr id=\"his_balancechange_"$i$"\"><td>Balance change</td><td>"$GP.MoneyToString(GP.FightHistory[i].BalanceChange)$"</td></tr>"); output.Logf("<tr id=\"his_bonus_"$i$"\"><td>Bonus money</td><td>"$GP.MoneyToString(GP.FightHistory[i].BonusMoney)$"</td></tr>"); output.Logf("<tr id=\"his_time_"$i$"\"><td>Game time</td><td>"$(GP.FightHistory[i].GameTime/60)$" minutes</td></tr>"); output.Logf("<tr id=\"his_won_"$i$"\"><td>Won game</td><td>"$GP.FightHistory[i].WonGame$"</td></tr>"); if (GP.FightHistory[i].TeamGame) { output.Logf("<tr id=\"his_team1name_"$i$"\"><td>Team 1 name</td><td>"$getTeamName(GP.FightHistory[i].EnemyTeam, tmp)$"</td></tr>"); output.Logf("<tr id=\"his_team1score_"$i$"\"><td>Team 1 layout</td><td>"$GP.FightHistory[i].TeamLayout[0]$"</td></tr>"); output.Logf("<tr id=\"his_team1score_"$i$"\"><td>Team 1 score</td><td>"$GP.FightHistory[i].TeamScore[0]$"</td></tr>"); output.Logf("<tr id=\"his_team2name_"$i$"\"><td>Team 2 name</td><td>"$GP.TeamName$"</td></tr>"); output.Logf("<tr id=\"his_team2score_"$i$"\"><td>Team 2 layout</td><td>"$GP.FightHistory[i].TeamLayout[1]$"</td></tr>"); output.Logf("<tr id=\"his_team2score_"$i$"\"><td>Team 2 score</td><td>"$GP.FightHistory[i].TeamScore[1]$"</td></tr>"); } output.Logf("<tr id=\"his_myscore_"$i$"\"><td>My score</td><td>"$GP.FightHistory[i].MyScore$"</td></tr>"); output.Logf("<tr id=\"his_mykills_"$i$"\"><td>My kills</td><td>"$GP.FightHistory[i].MyKills$"</td></tr>"); output.Logf("<tr id=\"his_mydeath_"$i$"\"><td>My deaths</td><td>"$GP.FightHistory[i].MyDeaths$"</td></tr>"); output.Logf("<tr id=\"his_myaward_"$i$"\"><td>My awards</td><td>"$GP.FightHistory[i].MyAwards$"</td></tr>"); output.Logf("<tr id=\"his_myrating_"$i$"\"><td>My rating</td><td>"$GP.FightHistory[i].MyRating$"</td></tr>"); output.Logf("</table><br />"); } output.Logf("</div>"); } /** return the official name of a gametype */ function string getGameTypeString(string GameType) { local CacheManager.GameRecord GR; GR = class'CacheManager'.static.GetGameRecord(GameType); if (GR.GameName != "") return GR.GameName; return GameType; } /** get the real team name and the list of players */ function string getTeamName(string TeamClass, out string TeamRoster) { local class<UT2K4TeamRoster> ETI; local array<string> Roster; ETI = class<UT2K4TeamRoster>(DynamicLoadObject(TeamClass, class'Class')); if (ETI == none) { Warn(TeamClass@"is not a valid UT2K4TeamRoster subclass"); return ""; } if (!GP.GetAltTeamRoster(TeamClass, Roster)) { Roster = ETI.default.RosterNames; } TeamRoster = JoinArray(Roster, ", ", true); return ETI.default.TeamName; } /** return the filename to use for the log file. The following formatting rules are accepted: %N profile name (the actual filename) %P player name %Y year %M month %D day %H hour %I minute %S second %W day of the week %% '%' */ protected function string FormatString(string LogFileName) { local string result; result = LogFileName; result = repl(result, "%Y", Right("0000"$string(Level.Year), 4)); result = repl(result, "%M", Right("00"$string(Level.Month), 2)); result = repl(result, "%D", Right("00"$string(Level.Day), 2)); result = repl(result, "%H", Right("00"$string(Level.Hour), 2)); result = repl(result, "%I", Right("00"$string(Level.Minute), 2)); result = repl(result, "%W", Right("0"$string(Level.DayOfWeek), 1)); result = repl(result, "%S", Right("00"$string(Level.Second), 2)); result = repl(result, "%%", "%"); result = repl(result, "%N", GP.PackageName); result = repl(result, "%P", GP.PlayerName); return result; } /** Join together array elements into a single string */ static final function string JoinArray(array<string> StringArray, optional string delim, optional bool bIgnoreBlanks) { local int i; local string s; if (delim == "") delim = ","; for (i = 0; i < StringArray.Length; i++) { if ((StringArray[i] != "") || (!bIgnoreBlanks)) { if (s != "") s $= delim; s $= StringArray[i]; } } return s; } defaultproperties { Filename="%N_%Y_%M_%D_%H_%I" FileExt="html" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |