first commit

This commit is contained in:
2026-06-14 01:40:04 +02:00
commit 5511354783
4787 changed files with 103543 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 89 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 554 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 B

@@ -0,0 +1,21 @@
on(construct){
m_focusDirs = "Up/Down";
m_numEntries = 11;
m_vPadding = 5;
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = -1;
m_bVisible = true;
m_scrollbarOffset = [];
m_scrollbarOffset[0] = 0;
m_scrollbarOffset[1] = 0;
m_BgVisible = true;
m_renderWidth = 0;
m_renderHeight = 0;
m_backgroundMargin = 2;
m_useHighlights = true;
m_alternateBackgroundColors = true;
m_backgroundColor1 = 2622983;
m_backgroundColor2 = 0;
}
@@ -0,0 +1,6 @@
on(construct){
m_nLength = 100;
m_nMax = 10;
m_nMin = 0;
m_nValue = 0;
}
@@ -0,0 +1,10 @@
on(construct){
m_focusDirs = "Up/Down";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = -1;
m_bVisible = true;
m_label = "$POSTGAME_STATS_TAB";
m_contentSymbol = "tabButtonContentClip";
}
@@ -0,0 +1,10 @@
on(construct){
m_focusDirs = "Up/Down";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = -1;
m_bVisible = true;
m_label = "$RESOURCES";
m_contentSymbol = "tabButtonContentClip";
}
@@ -0,0 +1,10 @@
on(construct){
m_focusDirs = "Up/Down";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = -1;
m_bVisible = true;
m_label = "$STRUCTURES";
m_contentSymbol = "tabButtonContentClip";
}
@@ -0,0 +1,10 @@
on(construct){
m_focusDirs = "Up/Down";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = -1;
m_bVisible = true;
m_label = "$UNITS";
m_contentSymbol = "tabButtonContentClip";
}
@@ -0,0 +1,2 @@
this._parent.introComplete();
stop();
@@ -0,0 +1,2 @@
this._parent.outtroComplete();
stop();
@@ -0,0 +1,2 @@
this._parent.introComplete();
stop();
@@ -0,0 +1,2 @@
this._parent.outtroComplete();
stop();
@@ -0,0 +1,2 @@
this._parent.outtroComplete();
stop();
@@ -0,0 +1,193 @@
class Cafe2_BaseUIScreen
{
var m_changeToScreen = null;
var m_executeOuttroCallBack = null;
var m_uiComponentArray = new Array();
function Cafe2_BaseUIScreen(screen)
{
Cafe2_BaseUIScreen.m_screen = screen;
Cafe2_BaseUIScreen.m_screen.onEnterFrame = _global.bind0(this,this.frameDelayedInitCallback);
}
function frameDelayedInit()
{
trace("\n\nCafe2_BaseUIScreen::frameDelayedInitCallback() :");
var _loc1_ = new Array("N.B. You *must* override frameDelayedInit() in your","\nscreens and move the call to initGUI() to frameDelayedInit().\n");
trace(_loc1_[0] + _loc1_[1]);
}
function frameDelayedInitCallback()
{
Cafe2_BaseUIScreen.m_screen.onEnterFrame = null;
this.frameDelayedInit();
}
function outtroComplete(theComponent)
{
trace("Cafe2_BaseUIScreen::outtroComplete() " + theComponent);
var _loc2_ = 0;
while(_loc2_ < Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length)
{
if(theComponent == Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_])
{
break;
}
_loc2_ = _loc2_ + 1;
}
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.splice(_loc2_,1);
if(Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length <= 0)
{
if(Cafe2_BaseUIScreen.m_thisClass.m_changeToScreen != null)
{
_global.gSM.changeMainScreen(Cafe2_BaseUIScreen.m_thisClass.m_changeToScreen);
}
}
}
function introComplete(theComponent)
{
trace("Cafe2_BaseUIScreen::introComplete()");
theComponent.restoreVisualState();
Cafe2_BaseUIScreen.m_thisClass.m_introCount--;
if(Cafe2_BaseUIScreen.m_thisClass.m_introCount <= 0)
{
Cafe2_BaseUIScreen.m_thisClass.onIntrosComplete();
}
}
function onIntrosComplete()
{
trace("Cafe2_BaseUIScreen::onIntrosComplete()");
_global.gEH.setLocalEventHandler(this.localEventHandler);
_global.gEH.enableCurrentLocalEventHandler();
}
function registerIntroOuttroComponents(components)
{
trace("Cafe2_BaseUIScreen::registerIntroOuttroComponents()");
this.m_uiComponentArray = components;
this.m_introCount = this.m_uiComponentArray.length;
var _loc2_ = 0;
while(_loc2_ < this.m_introCount)
{
this.m_uiComponentArray[_loc2_].setIntroCallback(this.introComplete);
_loc2_ = _loc2_ + 1;
}
}
function executeBackFunction(theComponent)
{
trace("Cafe2_BaseUIScreen::executeBackFunction" + theComponent);
var _loc2_ = 0;
while(_loc2_ < Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length)
{
if(theComponent == Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_])
{
break;
}
_loc2_ = _loc2_ + 1;
}
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.splice(_loc2_,1);
if(Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length <= 0)
{
_global.gSM.goBackScreen();
}
}
function startIntro()
{
trace("Cafe2_BaseUIScreen::startIntro()");
var _loc3_ = this.m_uiComponentArray.length;
var _loc2_ = 0;
while(_loc2_ < _loc3_)
{
this.m_uiComponentArray[_loc2_].intro();
_loc2_ = _loc2_ + 1;
}
}
function startOuttro(newScreen)
{
trace("Cafe2_BaseUIScreen::startOuttro");
this.m_changeToScreen = newScreen;
var _loc3_ = Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length;
if(_loc3_ > 0)
{
var _loc2_ = 0;
while(_loc2_ < _loc3_)
{
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_].outtro(this.outtroComplete);
_loc2_ = _loc2_ + 1;
}
}
else
{
this.outtroComplete(null);
}
}
function startOuttroAndCallBack(doAfterOuttroComplete)
{
trace("Cafe2_BaseUIScreen::startOuttro");
this.m_executeOuttroCallBack = doAfterOuttroComplete;
var _loc3_ = Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length;
if(_loc3_ > 0)
{
var _loc2_ = 0;
while(_loc2_ < _loc3_)
{
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_].outtro(this.outtroAndCallBackComplete);
_loc2_ = _loc2_ + 1;
}
}
else
{
this.outtroAndCallBackComplete(null);
}
}
function outtroAndCallBackComplete(theComponent)
{
trace("Cafe2_BaseUIScreen::outtroComplete() " + theComponent);
var _loc1_ = 0;
while(_loc1_ < Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length)
{
if(theComponent == Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc1_])
{
break;
}
_loc1_ = _loc1_ + 1;
}
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.splice(_loc1_,1);
if(Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length <= 0)
{
Cafe2_BaseUIScreen.m_thisClass.m_executeOuttroCallBack();
}
}
function backButtonClicked()
{
trace("Cafe2_BaseUIScreen::backButtonClicked()");
var _loc3_ = Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length;
if(_loc3_ > 0)
{
var _loc2_ = 0;
while(_loc2_ < _loc3_)
{
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_].outtro(Cafe2_BaseUIScreen.m_thisClass.executeBackFunction);
_loc2_ = _loc2_ + 1;
}
}
else
{
_global.gSM.goBackScreen();
}
}
function localEventHandler(keyCode, controller)
{
trace("Cafe2_BaseUIScreen::localEventHandler() keyCode == " + keyCode);
_global.gFM.handleDefaultInputs(keyCode);
}
function clearData()
{
Cafe2_BaseUIScreen.m_screen = null;
Cafe2_BaseUIScreen.m_thisClass = null;
this.m_changeToScreen = null;
this.m_uiComponentArray = null;
}
function bind0(obj, func)
{
return function()
{
func.call(obj);
};
}
}
@@ -0,0 +1,406 @@
class fes_m_postgameRoundup extends Cafe2_BaseUIScreen
{
static var TS_TAB_UNITS = 0;
static var TS_TAB_STRUCTURES = 1;
static var TS_TAB_RESOURCES = 2;
static var TS_TAB_STATS = 3;
static var TS_TAB_MAX = 4;
static var GRAPH_NUM_LABELS = 8;
static var STATS_ROW_CNT = 14;
static var STATS_ROW_H = 22;
static var STATS_COLUMN_01_WIDTH = 300;
static var STATS_COLUMN_02_WIDTH = 320;
static var STATS_COLUMN_03_WIDTH = 320;
var m_isHost = false;
var m_isClient = false;
var m_isAIMode = false;
var m_win = false;
function fes_m_postgameRoundup(screen)
{
super(screen);
Cafe2_BaseUIScreen.m_thisClass = this;
}
function frameDelayedInit()
{
this.initGUI();
this.startIntro();
}
function initGUI()
{
trace("fes_m_postgameRoundup::initGUI()");
this.m_isHost = _global.GAME.COOPMODE == _global.ENUM.GAME_COOPMODE_HOST;
this.m_isClient = _global.GAME.COOPMODE == _global.ENUM.GAME_COOPMODE_CLIENT;
this.m_isAIMode = _global.GAME.COOPMODE == _global.ENUM.GAME_COOPMODE_AI;
if(!this.m_isAIMode)
{
// Checked
getUrl("FSCommand:CallGameFunction", "%SetGameSetupMode?Mode=Online");
}
// Checked
getUrl("FSCommand:CallGameFunction", "Campaign_FinishMission");
var ret = new Object();
// 这里有在获取战役任务编号(CAMPAIGN_MISSION),但实际上没有使用这个值
// Checked
loadVariables("QueryGameEngine?CAMPAIGN_MISSION&POSTGAME_PLAYER_COUNT&POSTGAME_PLAYERCOLORS&POSTGAME_PLAYERNAMES&CAMPAIGN_FINAL_MOVIE&PLAY_CAMPAIGN_EPILOG_VIDEO",ret);
if(ret.PLAY_CAMPAIGN_EPILOG_VIDEO == "1")
{
var movieId = ret.CAMPAIGN_FINAL_MOVIE;
// Checked
getURL("FSCommand:CallGameFunction","%PlayMovieAtomic?movie=" + movieId + "|allowCancel=1");
this.m_win = true;
}
this.m_numPlayers = ret.POSTGAME_PLAYER_COUNT;
this.m_playerNames = ret.POSTGAME_PLAYERNAMES.split(",");
trace("fes_m_postgameRoundup::initGUI() - POSTGAME_PLAYERNAMES: " + ret.POSTGAME_PLAYERNAMES);
this.m_playerColors = ret.POSTGAME_PLAYERCOLORS.split(",");
trace("fes_m_postgameRoundup::initGUI() - POSTGAME_PLAYERCOLORS: " + ret.POSTGAME_PLAYERCOLORS);
this.initButtons();
this.initCommandersPanel();
this.initChatPanel();
this.initAchievementsPanel();
this.initTimelineStandingsPanel();
this.m_localMessageHandlerFunc = _global.bind1DynamicParams(this,this.localMessageHandler);
_global.gMH.addMessageHandler(this.m_localMessageHandlerFunc);
_global.gSM.setOnExitScreen(_global.bind0(this,this.onScreenExit));
if(this.m_isHost)
{
var ret = new Object();
// Checked
loadVariables("QueryGameEngine?CAMPAIGN_MAP_CRC",ret);
// Checked
getUrl("FSCommand:CallGameFunction","%SetMap\?Map=" + ret.CAMPAIGN_MAP_CRC);
// Checked
getUrl("FSCommand:CallGameFunction", "CoopCampaignFlow_PostGameHostReady");
}
// Checked
loadVariables("QueryGameEngine?DID_LOCAL_PLAYER_WIN",ret);
var isLocalPlayerWin = ret.DID_LOCAL_PLAYER_WIN == "1";
if(isLocalPlayerWin && !this.m_isClient)
{
// Checked
getUrl("FSCommand:CallGameFunction", "AutoSave");
}
if(this.m_isClient)
{
// Checked
getUrl("FSCommand:CallGameFunction", "CoopCampaignFlow_PostGameClientReady");
}
this.playStatsMusic(isLocalPlayerWin);
}
function initButtons()
{
trace("fes_m_postgameRoundup::initButtons()");
var arr = new Array();
Cafe2_BaseUIScreen.m_screen.btnMainMenu.show();
Cafe2_BaseUIScreen.m_screen.btnMainMenu.setText("$MAINMENU");
Cafe2_BaseUIScreen.m_screen.btnMainMenu.enable();
Cafe2_BaseUIScreen.m_screen.btnMainMenu.setOnMouseUpFunction(_global.bind0(this,this.onMainMenuClicked));
arr.push(Cafe2_BaseUIScreen.m_screen.btnMainMenu);
if(this.m_isClient)
{
Cafe2_BaseUIScreen.m_screen.btnNext.hide();
Cafe2_BaseUIScreen.m_screen.btnNext.disable();
Cafe2_BaseUIScreen.m_screen.btnLoadGame.hide();
Cafe2_BaseUIScreen.m_screen.btnLoadGame.disable();
}
else
{
Cafe2_BaseUIScreen.m_screen.btnNext.show();
Cafe2_BaseUIScreen.m_screen.btnNext.setText("$NEXT");
Cafe2_BaseUIScreen.m_screen.btnLoadGame.show();
if(this.m_isHost)
{
Cafe2_BaseUIScreen.m_screen.btnNext.disable();
Cafe2_BaseUIScreen.m_screen.btnLoadGame.disable();
}
else
{
Cafe2_BaseUIScreen.m_screen.btnNext.enable();
Cafe2_BaseUIScreen.m_screen.btnLoadGame.enable();
}
Cafe2_BaseUIScreen.m_screen.btnNext.setOnMouseUpFunction(_global.bind0(this,this.onNextClicked));
Cafe2_BaseUIScreen.m_screen.btnLoadGame.setOnMouseUpFunction(_global.bind0(this,this.onLoadGameClicked));
}
arr.push(Cafe2_BaseUIScreen.m_screen.btnNext);
arr.push(Cafe2_BaseUIScreen.m_screen.btnLoadGame);
Cafe2_BaseUIScreen.m_screen.panelTS.btnUnits.setOnMouseDownFunction(_global.bind0(this,this.onUnitsClicked));
Cafe2_BaseUIScreen.m_screen.panelTS.btnUnits.show();
Cafe2_BaseUIScreen.m_screen.panelTS.btnUnits.enable();
arr.push(Cafe2_BaseUIScreen.m_screen.panelTS.btnUnits);
Cafe2_BaseUIScreen.m_screen.panelTS.btnStructures.setOnMouseDownFunction(_global.bind0(this,this.onStructuresClicked));
Cafe2_BaseUIScreen.m_screen.panelTS.btnStructures.show();
Cafe2_BaseUIScreen.m_screen.panelTS.btnStructures.enable();
arr.push(Cafe2_BaseUIScreen.m_screen.panelTS.btnStructures);
Cafe2_BaseUIScreen.m_screen.panelTS.btnResources.setOnMouseDownFunction(_global.bind0(this,this.onResourcesClicked));
Cafe2_BaseUIScreen.m_screen.panelTS.btnResources.show();
Cafe2_BaseUIScreen.m_screen.panelTS.btnResources.enable();
arr.push(Cafe2_BaseUIScreen.m_screen.panelTS.btnResources);
Cafe2_BaseUIScreen.m_screen.panelTS.btnStats.setOnMouseDownFunction(_global.bind0(this,this.onStatsClicked));
Cafe2_BaseUIScreen.m_screen.panelTS.btnStats.show();
Cafe2_BaseUIScreen.m_screen.panelTS.btnStats.enable();
arr.push(Cafe2_BaseUIScreen.m_screen.panelTS.btnStats);
this.registerIntroOuttroComponents(arr);
}
function initCommandersPanel()
{
trace("fes_m_postgameRoundup::initCommandersPanel()");
Cafe2_BaseUIScreen.m_screen.panelCommanders.tfCommanderName.text = this.m_playerNames[0];
Cafe2_BaseUIScreen.m_screen.panelCommanders.tfCoCommanderName.text = this.m_playerNames[1];
var localPlayerColor = Number("0x" + this.m_playerColors[0].substr(2));
var collaboratorPlayerColor = Number("0x" + this.m_playerColors[1].substr(2));
var localPlayerColorComponent = new Color(Cafe2_BaseUIScreen.m_screen.panelCommanders.mcCommanderColor);
var collaboratorPlayerColorComponent = new Color(Cafe2_BaseUIScreen.m_screen.panelCommanders.mcCoCommanderColor);
localPlayerColorComponent.setRGB(localPlayerColor);
collaboratorPlayerColorComponent.setRGB(collaboratorPlayerColor);
}
function initChatPanel()
{
trace("fes_m_postgameRoundup::initChatPanel()");
Cafe2_BaseUIScreen.m_screen.panelChat._visible = !this.m_isAIMode;
}
function initAchievementsPanel()
{
trace("fes_m_postgameRoundup::initAchievementsPanel()");
Cafe2_BaseUIScreen.m_screen.panelAchievement._visible = this.m_isAIMode;
}
function initTimelineStandingsPanel()
{
trace("fes_m_postgameRoundup::initTimelineStandingsPanel()");
var ret = new Object();
// Checked
loadVariables("QueryGameEngine?POSTGAME_STATS",ret);
var mcStatsTabComponent = Cafe2_BaseUIScreen.m_screen.panelTS.mcStatsTab;
var postGameStats = new Array();
postGameStats = ret.POSTGAME_STATS.split(",");
mcStatsTabComponent.lbStats.setNumEntries(fes_m_postgameRoundup.STATS_ROW_CNT);
mcStatsTabComponent.lbStats.setVerticalPadding(0);
var statsTextElementList = new Array();
statsTextElementList.push({symbol:"std_mouseListboxEntryTextElementSymbol",width:fes_m_postgameRoundup.STATS_COLUMN_01_WIDTH,leftMargin:0,rightMargin:0,fontSize:14});
statsTextElementList.push({symbol:"std_mouseListboxEntryTextElementSymbol",width:fes_m_postgameRoundup.STATS_COLUMN_02_WIDTH,leftMargin:5,rightMargin:0,fontSize:14});
statsTextElementList.push({symbol:"std_mouseListboxEntryTextElementSymbol",width:fes_m_postgameRoundup.STATS_COLUMN_03_WIDTH,leftMargin:5,rightMargin:0,fontSize:14});
mcStatsTabComponent.lbStats.init(statsTextElementList,fes_m_postgameRoundup.STATS_ROW_H);
mcStatsTabComponent.lbStats.attachScrollbarController(mcStatsTabComponent.sbStats);
mcStatsTabComponent.lbStats.moveViewToFirst();
mcStatsTabComponent.lbStats.refreshDisplay();
mcStatsTabComponent.lbStats.refreshScrollbar();
this.m_playerStats0 = new Array();
this.m_playerStats1 = new Array();
for(var i = 0; i < postGameStats.length; ++i)
{
postGameStats[i] = "$" + postGameStats[i];
this.m_playerStats0[i] = postGameStats[i] + "_0,0x" + this.m_playerColors[0].substr(2);
this.m_playerStats1[i] = postGameStats[i] + "_1,0x" + this.m_playerColors[1].substr(2);
trace("fes_m_postgameRoundup::initTimelineStandingsPanel() - Stat: " + postGameStats[i]);
}
mcStatsTabComponent.lbStats.setColumnData(0,postGameStats);
mcStatsTabComponent.lbStats.setColumnData(1,this.m_playerStats0);
mcStatsTabComponent.lbStats.setColumnData(2,this.m_playerStats1);
mcStatsTabComponent.lbStats.refreshDisplay();
mcStatsTabComponent.lbStats.refreshScrollbar();
var firstColor = Number("0x" + this.m_playerColors[0].substr(2));
var secondColor = Number("0x" + this.m_playerColors[1].substr(2));
var firstColorComponent = new Color(mcStatsTabComponent.mcDot1);
var secondColorComponent = new Color(mcStatsTabComponent.mcDot2);
firstColorComponent.setRGB(firstColor);
secondColorComponent.setRGB(secondColor);
this.setTSTab(fes_m_postgameRoundup.TS_TAB_UNITS);
this.initStatsGraphAxisLables();
}
function initStatsGraphAxisLables()
{
var graphTabComponent = Cafe2_BaseUIScreen.m_screen.panelTS.mcGraphTab_landscape;
graphTabComponent.tf_X0.text = "$Timeline:XAxis:0";
graphTabComponent.tf_X1.text = "$Timeline:XAxis:1";
graphTabComponent.tf_X2.text = "$Timeline:XAxis:2";
graphTabComponent.tf_X3.text = "$Timeline:XAxis:3";
graphTabComponent.tf_X4.text = "$Timeline:XAxis:4";
graphTabComponent.tf_X5.text = "$Timeline:XAxis:5";
graphTabComponent.tf_X6.text = "$Timeline:XAxis:6";
graphTabComponent.tf_X7.text = "$Timeline:XAxis:7";
graphTabComponent.tf_Y0.text = "$Timeline:YAxis:0";
graphTabComponent.tf_Y1.text = "$Timeline:YAxis:1";
graphTabComponent.tf_Y2.text = "$Timeline:YAxis:2";
graphTabComponent.tf_Y3.text = "$Timeline:YAxis:3";
graphTabComponent.tf_Y4.text = "$Timeline:YAxis:4";
graphTabComponent.tf_Y5.text = "$Timeline:YAxis:5";
graphTabComponent.tf_Y6.text = "$Timeline:YAxis:6";
graphTabComponent.tf_Y7.text = "$Timeline:YAxis:7";
}
function playStatsMusic(gameWon)
{
if(gameWon)
{
_global.PlayShellMusic(_global.SOUND.STATS_WIN);
}
else
{
_global.PlayShellMusic(_global.SOUND.STATS_LOSE);
}
}
function localMessageHandler(messageCode)
{
var flag = true;
switch(messageCode)
{
case _global.MSGCODE.FE_COOP_CAMPAIGN_STAGING_STEP_OBJECTIVE_BRIEFING:
this.startOuttroAndCallBack(_global.bind0(this,this.leaveToCoopStaging));
break;
case _global.MSGCODE.FE_COOP_CAMPAIGN_STAGING_STEP_STAGING:
this.startOuttro(_global.SCREEN.FEM_COOPSTAGING);
break;
case _global.MSGCODE.FE_COOP_CAMPAIGN_STAGING_STEP_RECRUITMENT:
this.startOuttro(_global.SCREEN.FEG_RECRUITMENT_UI);
break;
case _global.MSGCODE.FE_COOP_CAMPAIGN_COCOMMANDER_READY:
if(this.m_isHost)
{
this.cocommanderReady();
}
else
{
flag = false;
}
break;
case _global.MSGCODE.FE_COOP_CAMPAIGN_COMMANDER_READY:
if(this.m_isClient)
{
// Checked
getUrl("FSCommand:CallGameFunction", "CoopCampaignFlow_PostGameClientReady");
}
else
{
flag = false;
}
break;
default:
flag = false;
}
return flag;
}
function onScreenExit()
{
trace("fes_m_postgameRoundup::onScreenExit()");
_global.gMH.removeMessageHandler(this.m_localMessageHandlerFunc);
delete this.m_localMessageHandlerFunc;
this.clearData();
delete _global.fes_m_postgameRoundup;
delete _global.Cafe2_BaseUIScreen;
_global.PlayShellMusic(_global.SOUND.SHELL_MAIN);
}
function onMainMenuClicked()
{
trace("fes_m_postgameRoundup::onMainMenuClicked()");
if(this.m_isHost || this.m_isClient)
{
// Checked
getUrl("FSCommand:CallGameFunction", "%SetGameSetupMode?Mode=None");
}
// Checked
getUrl("FSCommand:CallGameFunction", "Campaign_ExitGame");
this.startOuttroAndCallBack(_global.bind0(this,this.leaveToMainMenu));
}
function onNextClicked()
{
trace("fes_m_postgameRoundup::onNextClicked()");
if(this.m_isAIMode)
{
_global.GAME.COOPMODE = _global.ENUM.GAME_COOPMODE_CHOOSER;
if(this.m_win)
{
this.startOuttroAndCallBack(_global.bind0(this,this.leaveToFactionSelection));
}
else
{
this.startOuttroAndCallBack(_global.bind0(this,this.leaveToMissionBriefing));
}
}
else
{
// Checked
getUrl("FSCommand:CallGameFunction", "%CoopCampaignFlow_ObjectiveBriefing");
// Checked
getUrl("FSCommand:CallGameFunction", "%PostGame_MPExit?Continue=1");
}
}
function onUnitsClicked()
{
trace("fes_m_postgameRoundup::onUnitsClicked()");
this.setTSTab(fes_m_postgameRoundup.TS_TAB_UNITS);
}
function onStructuresClicked()
{
trace("fes_m_postgameRoundup::onStructuresClicked()");
this.setTSTab(fes_m_postgameRoundup.TS_TAB_STRUCTURES);
}
function onResourcesClicked()
{
trace("fes_m_postgameRoundup::onResourcesClicked()");
this.setTSTab(fes_m_postgameRoundup.TS_TAB_RESOURCES);
}
function onStatsClicked()
{
trace("fes_m_postgameRoundup::onSTATSClicked()");
this.setTSTab(fes_m_postgameRoundup.TS_TAB_STATS);
}
function onLoadGameClicked()
{
_global.GAME.MODE = _global.ENUM.GAME_MODE_CAMPAIGN;
_global.GAME.SAVELOADSCREEN_TYPE = _global.ENUM.SAVELOADSCREEN_LOAD;
this.startOuttro(_global.SCREEN.FEG_SAVELOAD);
}
function setTSTab(tabID)
{
trace("fes_m_postgameRoundup::setTSTab() : tabID=" + tabID);
Cafe2_BaseUIScreen.m_screen.panelTS.btnUnits.setSelected(tabID == fes_m_postgameRoundup.TS_TAB_UNITS);
Cafe2_BaseUIScreen.m_screen.panelTS.btnStructures.setSelected(tabID == fes_m_postgameRoundup.TS_TAB_STRUCTURES);
Cafe2_BaseUIScreen.m_screen.panelTS.btnResources.setSelected(tabID == fes_m_postgameRoundup.TS_TAB_RESOURCES);
Cafe2_BaseUIScreen.m_screen.panelTS.btnStats.setSelected(tabID == fes_m_postgameRoundup.TS_TAB_STATS);
if(tabID == fes_m_postgameRoundup.TS_TAB_STATS)
{
Cafe2_BaseUIScreen.m_screen.panelTS.mcGraphTab_landscape._visible = false;
Cafe2_BaseUIScreen.m_screen.panelTS.mcStatsTab._visible = true;
return undefined;
}
switch(tabID)
{
case fes_m_postgameRoundup.TS_TAB_UNITS:
// Checked
getUrl("FSCommand:CallGameFunction", "%PostGame_SetGraphMode?GraphMode=0");
break;
case fes_m_postgameRoundup.TS_TAB_STRUCTURES:
// Checked
getUrl("FSCommand:CallGameFunction", "%PostGame_SetGraphMode?GraphMode=1");
break;
case fes_m_postgameRoundup.TS_TAB_RESOURCES:
// Checked
getUrl("FSCommand:CallGameFunction", "%PostGame_SetGraphMode?GraphMode=2");
break;
default:
trace("ERROR: Could not find tabID in fes_m_postgameRoundup::setTSTab()");
}
Cafe2_BaseUIScreen.m_screen.panelTS.mcGraphTab_landscape._visible = true;
Cafe2_BaseUIScreen.m_screen.panelTS.mcStatsTab._visible = false;
}
function leaveToCoopStaging()
{
_global.gotoShellScreen(_global.SCREEN.FEM_COOPSTAGING,[_global.SCREEN.FEG_MAIN_MENU]);
}
function leaveToMainMenu()
{
_global.gotoShellScreen(_global.SCREEN.FEG_MAIN_MENU,[]);
}
function leaveToFactionSelection()
{
_global.gotoShellScreen(_global.SCREEN.FES_FACTION_SELECT_MENU,[_global.SCREEN.FEG_MAIN_MENU]);
}
function leaveToMissionBriefing()
{
_global.GAME.PLAY_MISSION_INTRO_MOVIE = true;
_global.gotoShellScreen(_global.SCREEN.FES_COOP_MISSION_BRIEFING,[_global.SCREEN.FEG_MAIN_MENU,_global.SCREEN.FES_FACTION_SELECT_MENU]);
}
function cocommanderReady()
{
Cafe2_BaseUIScreen.m_screen.btnNext.enable();
Cafe2_BaseUIScreen.m_screen.btnLoadGame.enable();
}
}
@@ -0,0 +1,2 @@
var screen = new fes_m_postgameRoundup(this);
stop();
@@ -0,0 +1,18 @@
on(construct){
m_width = 200;
m_textAlign = true;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "$MAINMENU";
m_nTruncateType = 0;
m_label = "$MAINMENU";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = 3;
m_bVisible = true;
m_contentSymbol = "buttonContentSymbol";
}
@@ -0,0 +1,18 @@
on(construct){
m_width = 200;
m_textAlign = true;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "$NEXT";
m_nTruncateType = 0;
m_label = "$NEXT";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = 4;
m_bVisible = true;
m_contentSymbol = "buttonContentSymbol";
}
@@ -0,0 +1,18 @@
on(construct){
m_width = 200;
m_textAlign = true;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "$LOAD";
m_nTruncateType = 0;
m_label = "$LOAD";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = 3;
m_bVisible = true;
m_contentSymbol = "buttonContentSymbol";
}
@@ -0,0 +1,6 @@
on(construct){
m_title = "$POSTGAME_ROUNDUP";
m_DropShadow = true;
m_Outline = true;
m_visible = true;
}
@@ -0,0 +1,654 @@
19;tabButtonContentClip
21;TABHitRegionButton
23;top_mouseRadioButton_label
24;top_radioButtonMC
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
24;top_radioButtonMC
23;top_mouseRadioButton_label
21;TABHitRegionButton
25;top_radioButtonContentClip
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
30;radioButtonMC
33;std_MouseradioButton_label
34;rbHitRegionButton
39;radioButtonContentClip
33;std_MouseradioButton_label
30;radioButtonMC
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
44;ts_radioButtonMC
47;ts_MouseradioButton_label
34;rbHitRegionButton
48;ts_radioButtonContentClip
34;rbHitRegionButton
47;ts_MouseradioButton_label
44;ts_radioButtonMC
54;commanderPanelMC Symbol
57;Chat Panel MC Symbol
59;statsGraph
61;mcGraphArea
61;mcGraphArea
86;mcStatsGraph
89;mcDot
89;mcDot
89;mcDot
86;mcStatsGraph
122;__Packages.Cafe2_BaseUIScreen
123;__Packages.fes_m_postgameRoundup
1 19 tabButtonContentClip
2 21 TABHitRegionButton
3 23 top_mouseRadioButton_label
4 24 top_radioButtonMC
5 24 top_radioButtonMC
6 23 top_mouseRadioButton_label
7 21 TABHitRegionButton
8 24 top_radioButtonMC
9 23 top_mouseRadioButton_label
10 21 TABHitRegionButton
11 24 top_radioButtonMC
12 23 top_mouseRadioButton_label
13 21 TABHitRegionButton
14 24 top_radioButtonMC
15 23 top_mouseRadioButton_label
16 21 TABHitRegionButton
17 24 top_radioButtonMC
18 23 top_mouseRadioButton_label
19 21 TABHitRegionButton
20 24 top_radioButtonMC
21 23 top_mouseRadioButton_label
22 21 TABHitRegionButton
23 24 top_radioButtonMC
24 23 top_mouseRadioButton_label
25 21 TABHitRegionButton
26 24 top_radioButtonMC
27 23 top_mouseRadioButton_label
28 21 TABHitRegionButton
29 24 top_radioButtonMC
30 23 top_mouseRadioButton_label
31 21 TABHitRegionButton
32 24 top_radioButtonMC
33 23 top_mouseRadioButton_label
34 21 TABHitRegionButton
35 24 top_radioButtonMC
36 23 top_mouseRadioButton_label
37 21 TABHitRegionButton
38 24 top_radioButtonMC
39 23 top_mouseRadioButton_label
40 21 TABHitRegionButton
41 24 top_radioButtonMC
42 23 top_mouseRadioButton_label
43 21 TABHitRegionButton
44 24 top_radioButtonMC
45 23 top_mouseRadioButton_label
46 21 TABHitRegionButton
47 24 top_radioButtonMC
48 23 top_mouseRadioButton_label
49 21 TABHitRegionButton
50 24 top_radioButtonMC
51 23 top_mouseRadioButton_label
52 21 TABHitRegionButton
53 24 top_radioButtonMC
54 23 top_mouseRadioButton_label
55 21 TABHitRegionButton
56 24 top_radioButtonMC
57 23 top_mouseRadioButton_label
58 21 TABHitRegionButton
59 24 top_radioButtonMC
60 23 top_mouseRadioButton_label
61 21 TABHitRegionButton
62 24 top_radioButtonMC
63 23 top_mouseRadioButton_label
64 21 TABHitRegionButton
65 24 top_radioButtonMC
66 23 top_mouseRadioButton_label
67 21 TABHitRegionButton
68 24 top_radioButtonMC
69 23 top_mouseRadioButton_label
70 21 TABHitRegionButton
71 24 top_radioButtonMC
72 23 top_mouseRadioButton_label
73 21 TABHitRegionButton
74 24 top_radioButtonMC
75 23 top_mouseRadioButton_label
76 21 TABHitRegionButton
77 24 top_radioButtonMC
78 23 top_mouseRadioButton_label
79 21 TABHitRegionButton
80 24 top_radioButtonMC
81 23 top_mouseRadioButton_label
82 21 TABHitRegionButton
83 24 top_radioButtonMC
84 23 top_mouseRadioButton_label
85 21 TABHitRegionButton
86 24 top_radioButtonMC
87 23 top_mouseRadioButton_label
88 21 TABHitRegionButton
89 24 top_radioButtonMC
90 23 top_mouseRadioButton_label
91 21 TABHitRegionButton
92 24 top_radioButtonMC
93 23 top_mouseRadioButton_label
94 21 TABHitRegionButton
95 24 top_radioButtonMC
96 23 top_mouseRadioButton_label
97 21 TABHitRegionButton
98 24 top_radioButtonMC
99 23 top_mouseRadioButton_label
100 21 TABHitRegionButton
101 24 top_radioButtonMC
102 23 top_mouseRadioButton_label
103 21 TABHitRegionButton
104 24 top_radioButtonMC
105 23 top_mouseRadioButton_label
106 21 TABHitRegionButton
107 24 top_radioButtonMC
108 23 top_mouseRadioButton_label
109 21 TABHitRegionButton
110 24 top_radioButtonMC
111 23 top_mouseRadioButton_label
112 21 TABHitRegionButton
113 24 top_radioButtonMC
114 23 top_mouseRadioButton_label
115 21 TABHitRegionButton
116 24 top_radioButtonMC
117 23 top_mouseRadioButton_label
118 21 TABHitRegionButton
119 24 top_radioButtonMC
120 23 top_mouseRadioButton_label
121 21 TABHitRegionButton
122 24 top_radioButtonMC
123 23 top_mouseRadioButton_label
124 21 TABHitRegionButton
125 24 top_radioButtonMC
126 23 top_mouseRadioButton_label
127 21 TABHitRegionButton
128 24 top_radioButtonMC
129 23 top_mouseRadioButton_label
130 21 TABHitRegionButton
131 24 top_radioButtonMC
132 23 top_mouseRadioButton_label
133 21 TABHitRegionButton
134 24 top_radioButtonMC
135 23 top_mouseRadioButton_label
136 21 TABHitRegionButton
137 24 top_radioButtonMC
138 23 top_mouseRadioButton_label
139 21 TABHitRegionButton
140 24 top_radioButtonMC
141 23 top_mouseRadioButton_label
142 21 TABHitRegionButton
143 24 top_radioButtonMC
144 23 top_mouseRadioButton_label
145 21 TABHitRegionButton
146 24 top_radioButtonMC
147 23 top_mouseRadioButton_label
148 21 TABHitRegionButton
149 24 top_radioButtonMC
150 23 top_mouseRadioButton_label
151 21 TABHitRegionButton
152 24 top_radioButtonMC
153 23 top_mouseRadioButton_label
154 21 TABHitRegionButton
155 24 top_radioButtonMC
156 23 top_mouseRadioButton_label
157 21 TABHitRegionButton
158 24 top_radioButtonMC
159 23 top_mouseRadioButton_label
160 21 TABHitRegionButton
161 24 top_radioButtonMC
162 23 top_mouseRadioButton_label
163 21 TABHitRegionButton
164 24 top_radioButtonMC
165 23 top_mouseRadioButton_label
166 21 TABHitRegionButton
167 24 top_radioButtonMC
168 23 top_mouseRadioButton_label
169 21 TABHitRegionButton
170 24 top_radioButtonMC
171 23 top_mouseRadioButton_label
172 21 TABHitRegionButton
173 24 top_radioButtonMC
174 23 top_mouseRadioButton_label
175 21 TABHitRegionButton
176 24 top_radioButtonMC
177 23 top_mouseRadioButton_label
178 21 TABHitRegionButton
179 24 top_radioButtonMC
180 23 top_mouseRadioButton_label
181 21 TABHitRegionButton
182 24 top_radioButtonMC
183 23 top_mouseRadioButton_label
184 21 TABHitRegionButton
185 24 top_radioButtonMC
186 23 top_mouseRadioButton_label
187 21 TABHitRegionButton
188 24 top_radioButtonMC
189 23 top_mouseRadioButton_label
190 21 TABHitRegionButton
191 24 top_radioButtonMC
192 23 top_mouseRadioButton_label
193 21 TABHitRegionButton
194 24 top_radioButtonMC
195 23 top_mouseRadioButton_label
196 21 TABHitRegionButton
197 24 top_radioButtonMC
198 23 top_mouseRadioButton_label
199 21 TABHitRegionButton
200 24 top_radioButtonMC
201 23 top_mouseRadioButton_label
202 21 TABHitRegionButton
203 24 top_radioButtonMC
204 23 top_mouseRadioButton_label
205 21 TABHitRegionButton
206 24 top_radioButtonMC
207 23 top_mouseRadioButton_label
208 21 TABHitRegionButton
209 24 top_radioButtonMC
210 23 top_mouseRadioButton_label
211 21 TABHitRegionButton
212 24 top_radioButtonMC
213 23 top_mouseRadioButton_label
214 21 TABHitRegionButton
215 25 top_radioButtonContentClip
216 30 radioButtonMC
217 33 std_MouseradioButton_label
218 34 rbHitRegionButton
219 30 radioButtonMC
220 33 std_MouseradioButton_label
221 34 rbHitRegionButton
222 30 radioButtonMC
223 33 std_MouseradioButton_label
224 34 rbHitRegionButton
225 30 radioButtonMC
226 33 std_MouseradioButton_label
227 34 rbHitRegionButton
228 30 radioButtonMC
229 33 std_MouseradioButton_label
230 34 rbHitRegionButton
231 30 radioButtonMC
232 33 std_MouseradioButton_label
233 34 rbHitRegionButton
234 30 radioButtonMC
235 33 std_MouseradioButton_label
236 34 rbHitRegionButton
237 30 radioButtonMC
238 33 std_MouseradioButton_label
239 34 rbHitRegionButton
240 30 radioButtonMC
241 33 std_MouseradioButton_label
242 34 rbHitRegionButton
243 30 radioButtonMC
244 33 std_MouseradioButton_label
245 34 rbHitRegionButton
246 30 radioButtonMC
247 33 std_MouseradioButton_label
248 34 rbHitRegionButton
249 30 radioButtonMC
250 33 std_MouseradioButton_label
251 34 rbHitRegionButton
252 30 radioButtonMC
253 33 std_MouseradioButton_label
254 34 rbHitRegionButton
255 30 radioButtonMC
256 33 std_MouseradioButton_label
257 34 rbHitRegionButton
258 30 radioButtonMC
259 33 std_MouseradioButton_label
260 34 rbHitRegionButton
261 30 radioButtonMC
262 33 std_MouseradioButton_label
263 34 rbHitRegionButton
264 30 radioButtonMC
265 33 std_MouseradioButton_label
266 34 rbHitRegionButton
267 30 radioButtonMC
268 33 std_MouseradioButton_label
269 34 rbHitRegionButton
270 30 radioButtonMC
271 33 std_MouseradioButton_label
272 34 rbHitRegionButton
273 30 radioButtonMC
274 33 std_MouseradioButton_label
275 34 rbHitRegionButton
276 30 radioButtonMC
277 33 std_MouseradioButton_label
278 34 rbHitRegionButton
279 30 radioButtonMC
280 33 std_MouseradioButton_label
281 34 rbHitRegionButton
282 30 radioButtonMC
283 33 std_MouseradioButton_label
284 34 rbHitRegionButton
285 30 radioButtonMC
286 33 std_MouseradioButton_label
287 34 rbHitRegionButton
288 30 radioButtonMC
289 33 std_MouseradioButton_label
290 34 rbHitRegionButton
291 30 radioButtonMC
292 33 std_MouseradioButton_label
293 34 rbHitRegionButton
294 30 radioButtonMC
295 33 std_MouseradioButton_label
296 34 rbHitRegionButton
297 30 radioButtonMC
298 33 std_MouseradioButton_label
299 34 rbHitRegionButton
300 30 radioButtonMC
301 33 std_MouseradioButton_label
302 34 rbHitRegionButton
303 30 radioButtonMC
304 33 std_MouseradioButton_label
305 34 rbHitRegionButton
306 30 radioButtonMC
307 33 std_MouseradioButton_label
308 34 rbHitRegionButton
309 30 radioButtonMC
310 33 std_MouseradioButton_label
311 34 rbHitRegionButton
312 30 radioButtonMC
313 33 std_MouseradioButton_label
314 34 rbHitRegionButton
315 30 radioButtonMC
316 33 std_MouseradioButton_label
317 34 rbHitRegionButton
318 30 radioButtonMC
319 33 std_MouseradioButton_label
320 34 rbHitRegionButton
321 30 radioButtonMC
322 33 std_MouseradioButton_label
323 34 rbHitRegionButton
324 30 radioButtonMC
325 33 std_MouseradioButton_label
326 34 rbHitRegionButton
327 30 radioButtonMC
328 33 std_MouseradioButton_label
329 34 rbHitRegionButton
330 30 radioButtonMC
331 33 std_MouseradioButton_label
332 34 rbHitRegionButton
333 30 radioButtonMC
334 33 std_MouseradioButton_label
335 34 rbHitRegionButton
336 30 radioButtonMC
337 33 std_MouseradioButton_label
338 34 rbHitRegionButton
339 30 radioButtonMC
340 33 std_MouseradioButton_label
341 34 rbHitRegionButton
342 30 radioButtonMC
343 33 std_MouseradioButton_label
344 34 rbHitRegionButton
345 30 radioButtonMC
346 33 std_MouseradioButton_label
347 34 rbHitRegionButton
348 30 radioButtonMC
349 33 std_MouseradioButton_label
350 34 rbHitRegionButton
351 30 radioButtonMC
352 33 std_MouseradioButton_label
353 34 rbHitRegionButton
354 30 radioButtonMC
355 33 std_MouseradioButton_label
356 34 rbHitRegionButton
357 30 radioButtonMC
358 33 std_MouseradioButton_label
359 34 rbHitRegionButton
360 30 radioButtonMC
361 33 std_MouseradioButton_label
362 34 rbHitRegionButton
363 30 radioButtonMC
364 33 std_MouseradioButton_label
365 34 rbHitRegionButton
366 30 radioButtonMC
367 33 std_MouseradioButton_label
368 34 rbHitRegionButton
369 30 radioButtonMC
370 33 std_MouseradioButton_label
371 34 rbHitRegionButton
372 30 radioButtonMC
373 33 std_MouseradioButton_label
374 34 rbHitRegionButton
375 30 radioButtonMC
376 33 std_MouseradioButton_label
377 34 rbHitRegionButton
378 30 radioButtonMC
379 33 std_MouseradioButton_label
380 34 rbHitRegionButton
381 30 radioButtonMC
382 33 std_MouseradioButton_label
383 34 rbHitRegionButton
384 30 radioButtonMC
385 33 std_MouseradioButton_label
386 34 rbHitRegionButton
387 30 radioButtonMC
388 33 std_MouseradioButton_label
389 34 rbHitRegionButton
390 30 radioButtonMC
391 33 std_MouseradioButton_label
392 34 rbHitRegionButton
393 30 radioButtonMC
394 33 std_MouseradioButton_label
395 34 rbHitRegionButton
396 30 radioButtonMC
397 33 std_MouseradioButton_label
398 34 rbHitRegionButton
399 30 radioButtonMC
400 33 std_MouseradioButton_label
401 34 rbHitRegionButton
402 30 radioButtonMC
403 33 std_MouseradioButton_label
404 34 rbHitRegionButton
405 30 radioButtonMC
406 33 std_MouseradioButton_label
407 34 rbHitRegionButton
408 30 radioButtonMC
409 33 std_MouseradioButton_label
410 34 rbHitRegionButton
411 30 radioButtonMC
412 33 std_MouseradioButton_label
413 34 rbHitRegionButton
414 30 radioButtonMC
415 33 std_MouseradioButton_label
416 34 rbHitRegionButton
417 30 radioButtonMC
418 33 std_MouseradioButton_label
419 34 rbHitRegionButton
420 30 radioButtonMC
421 33 std_MouseradioButton_label
422 34 rbHitRegionButton
423 30 radioButtonMC
424 33 std_MouseradioButton_label
425 34 rbHitRegionButton
426 39 radioButtonContentClip
427 33 std_MouseradioButton_label
428 30 radioButtonMC
429 44 ts_radioButtonMC
430 47 ts_MouseradioButton_label
431 34 rbHitRegionButton
432 44 ts_radioButtonMC
433 47 ts_MouseradioButton_label
434 34 rbHitRegionButton
435 44 ts_radioButtonMC
436 47 ts_MouseradioButton_label
437 34 rbHitRegionButton
438 44 ts_radioButtonMC
439 47 ts_MouseradioButton_label
440 34 rbHitRegionButton
441 44 ts_radioButtonMC
442 47 ts_MouseradioButton_label
443 34 rbHitRegionButton
444 44 ts_radioButtonMC
445 47 ts_MouseradioButton_label
446 34 rbHitRegionButton
447 44 ts_radioButtonMC
448 47 ts_MouseradioButton_label
449 34 rbHitRegionButton
450 44 ts_radioButtonMC
451 47 ts_MouseradioButton_label
452 34 rbHitRegionButton
453 44 ts_radioButtonMC
454 47 ts_MouseradioButton_label
455 34 rbHitRegionButton
456 44 ts_radioButtonMC
457 47 ts_MouseradioButton_label
458 34 rbHitRegionButton
459 44 ts_radioButtonMC
460 47 ts_MouseradioButton_label
461 34 rbHitRegionButton
462 44 ts_radioButtonMC
463 47 ts_MouseradioButton_label
464 34 rbHitRegionButton
465 44 ts_radioButtonMC
466 47 ts_MouseradioButton_label
467 34 rbHitRegionButton
468 44 ts_radioButtonMC
469 47 ts_MouseradioButton_label
470 34 rbHitRegionButton
471 44 ts_radioButtonMC
472 47 ts_MouseradioButton_label
473 34 rbHitRegionButton
474 44 ts_radioButtonMC
475 47 ts_MouseradioButton_label
476 34 rbHitRegionButton
477 44 ts_radioButtonMC
478 47 ts_MouseradioButton_label
479 34 rbHitRegionButton
480 44 ts_radioButtonMC
481 47 ts_MouseradioButton_label
482 34 rbHitRegionButton
483 44 ts_radioButtonMC
484 47 ts_MouseradioButton_label
485 34 rbHitRegionButton
486 44 ts_radioButtonMC
487 47 ts_MouseradioButton_label
488 34 rbHitRegionButton
489 44 ts_radioButtonMC
490 47 ts_MouseradioButton_label
491 34 rbHitRegionButton
492 44 ts_radioButtonMC
493 47 ts_MouseradioButton_label
494 34 rbHitRegionButton
495 44 ts_radioButtonMC
496 47 ts_MouseradioButton_label
497 34 rbHitRegionButton
498 44 ts_radioButtonMC
499 47 ts_MouseradioButton_label
500 34 rbHitRegionButton
501 44 ts_radioButtonMC
502 47 ts_MouseradioButton_label
503 34 rbHitRegionButton
504 44 ts_radioButtonMC
505 47 ts_MouseradioButton_label
506 34 rbHitRegionButton
507 44 ts_radioButtonMC
508 47 ts_MouseradioButton_label
509 34 rbHitRegionButton
510 44 ts_radioButtonMC
511 47 ts_MouseradioButton_label
512 34 rbHitRegionButton
513 44 ts_radioButtonMC
514 47 ts_MouseradioButton_label
515 34 rbHitRegionButton
516 44 ts_radioButtonMC
517 47 ts_MouseradioButton_label
518 34 rbHitRegionButton
519 44 ts_radioButtonMC
520 47 ts_MouseradioButton_label
521 34 rbHitRegionButton
522 44 ts_radioButtonMC
523 47 ts_MouseradioButton_label
524 34 rbHitRegionButton
525 44 ts_radioButtonMC
526 47 ts_MouseradioButton_label
527 34 rbHitRegionButton
528 44 ts_radioButtonMC
529 47 ts_MouseradioButton_label
530 34 rbHitRegionButton
531 44 ts_radioButtonMC
532 47 ts_MouseradioButton_label
533 34 rbHitRegionButton
534 44 ts_radioButtonMC
535 47 ts_MouseradioButton_label
536 34 rbHitRegionButton
537 44 ts_radioButtonMC
538 47 ts_MouseradioButton_label
539 34 rbHitRegionButton
540 44 ts_radioButtonMC
541 47 ts_MouseradioButton_label
542 34 rbHitRegionButton
543 44 ts_radioButtonMC
544 47 ts_MouseradioButton_label
545 34 rbHitRegionButton
546 44 ts_radioButtonMC
547 47 ts_MouseradioButton_label
548 34 rbHitRegionButton
549 44 ts_radioButtonMC
550 47 ts_MouseradioButton_label
551 34 rbHitRegionButton
552 44 ts_radioButtonMC
553 47 ts_MouseradioButton_label
554 34 rbHitRegionButton
555 44 ts_radioButtonMC
556 47 ts_MouseradioButton_label
557 34 rbHitRegionButton
558 44 ts_radioButtonMC
559 47 ts_MouseradioButton_label
560 34 rbHitRegionButton
561 44 ts_radioButtonMC
562 47 ts_MouseradioButton_label
563 34 rbHitRegionButton
564 44 ts_radioButtonMC
565 47 ts_MouseradioButton_label
566 34 rbHitRegionButton
567 44 ts_radioButtonMC
568 47 ts_MouseradioButton_label
569 34 rbHitRegionButton
570 44 ts_radioButtonMC
571 47 ts_MouseradioButton_label
572 34 rbHitRegionButton
573 44 ts_radioButtonMC
574 47 ts_MouseradioButton_label
575 34 rbHitRegionButton
576 44 ts_radioButtonMC
577 47 ts_MouseradioButton_label
578 34 rbHitRegionButton
579 44 ts_radioButtonMC
580 47 ts_MouseradioButton_label
581 34 rbHitRegionButton
582 44 ts_radioButtonMC
583 47 ts_MouseradioButton_label
584 34 rbHitRegionButton
585 44 ts_radioButtonMC
586 47 ts_MouseradioButton_label
587 34 rbHitRegionButton
588 44 ts_radioButtonMC
589 47 ts_MouseradioButton_label
590 34 rbHitRegionButton
591 44 ts_radioButtonMC
592 47 ts_MouseradioButton_label
593 34 rbHitRegionButton
594 44 ts_radioButtonMC
595 47 ts_MouseradioButton_label
596 34 rbHitRegionButton
597 44 ts_radioButtonMC
598 47 ts_MouseradioButton_label
599 34 rbHitRegionButton
600 44 ts_radioButtonMC
601 47 ts_MouseradioButton_label
602 34 rbHitRegionButton
603 44 ts_radioButtonMC
604 47 ts_MouseradioButton_label
605 34 rbHitRegionButton
606 44 ts_radioButtonMC
607 47 ts_MouseradioButton_label
608 34 rbHitRegionButton
609 44 ts_radioButtonMC
610 47 ts_MouseradioButton_label
611 34 rbHitRegionButton
612 44 ts_radioButtonMC
613 47 ts_MouseradioButton_label
614 34 rbHitRegionButton
615 44 ts_radioButtonMC
616 47 ts_MouseradioButton_label
617 34 rbHitRegionButton
618 44 ts_radioButtonMC
619 47 ts_MouseradioButton_label
620 34 rbHitRegionButton
621 44 ts_radioButtonMC
622 47 ts_MouseradioButton_label
623 34 rbHitRegionButton
624 44 ts_radioButtonMC
625 47 ts_MouseradioButton_label
626 34 rbHitRegionButton
627 44 ts_radioButtonMC
628 47 ts_MouseradioButton_label
629 34 rbHitRegionButton
630 44 ts_radioButtonMC
631 47 ts_MouseradioButton_label
632 34 rbHitRegionButton
633 44 ts_radioButtonMC
634 47 ts_MouseradioButton_label
635 34 rbHitRegionButton
636 44 ts_radioButtonMC
637 47 ts_MouseradioButton_label
638 34 rbHitRegionButton
639 48 ts_radioButtonContentClip
640 34 rbHitRegionButton
641 47 ts_MouseradioButton_label
642 44 ts_radioButtonMC
643 54 commanderPanelMC Symbol
644 57 Chat Panel MC Symbol
645 59 statsGraph
646 61 mcGraphArea
647 61 mcGraphArea
648 86 mcStatsGraph
649 89 mcDot
650 89 mcDot
651 89 mcDot
652 86 mcStatsGraph
653 122 __Packages.Cafe2_BaseUIScreen
654 123 __Packages.fes_m_postgameRoundup
@@ -0,0 +1 @@
$CO_COMMANDER&Outline
@@ -0,0 +1 @@
$MAIN_COMMANDER&Outline
@@ -0,0 +1 @@
$CO_COMMANDER&Outline
@@ -0,0 +1 @@
$CO_COCOMMANDER_NAME
@@ -0,0 +1 @@
$COMMANDERS
@@ -0,0 +1 @@
$COMMANDER_NAME
@@ -0,0 +1 @@
ButtonLabel
@@ -0,0 +1 @@
1&Outline
@@ -0,0 +1 @@
2&Outline
@@ -0,0 +1 @@
$COMMANDER_NAME
@@ -0,0 +1 @@
$CO_COMMANDER_NAME
@@ -0,0 +1 @@
$COMMANDER_TITLE
@@ -0,0 +1 @@
$CO_COMMANDER_TITLE
@@ -0,0 +1 @@
h
@@ -0,0 +1 @@
g
@@ -0,0 +1 @@
f
@@ -0,0 +1 @@
e
@@ -0,0 +1 @@
d
@@ -0,0 +1 @@
c
@@ -0,0 +1 @@
b
@@ -0,0 +1 @@
a
@@ -0,0 +1 @@
1
@@ -0,0 +1 @@
2
@@ -0,0 +1 @@
3
@@ -0,0 +1 @@
4
@@ -0,0 +1 @@
5
@@ -0,0 +1 @@
6
@@ -0,0 +1 @@
7
@@ -0,0 +1 @@
8
@@ -0,0 +1 @@
ButtonLabel
@@ -0,0 +1 @@
$MAIN_COMMANDER&Outline