Skip to content

Commit

Permalink
Sources of the Stadium Chase title.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aessi committed Jun 26, 2018
1 parent e897e6b commit ee9fe2b
Show file tree
Hide file tree
Showing 58 changed files with 12,196 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/**
* Chase UI
*/
#Extends "ManiaApps/Nadeo/TrackMania/AppBase.Script.txt"

#Const Version "2018-06-25"
#Const ScriptName "ManiaApps/Nadeo/TrackMania/Chase/ChaseAttack.Script.txt"

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
// Libraries
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
#Include "ManiaApps/Nadeo/TrackMania/Chase/ChaseAttack_Client.Script.txt" as Chase
#Include "ManiaApps/Nadeo/TrackMania/Chase/ChaseTuto_Client.Script.txt" as ChaseTuto
#Include "ManiaApps/Nadeo/TrackMania/Chase/Team_Client.Script.txt" as Team
#Include "ManiaApps/Nadeo/TrackMania/Chase/TeamSelection_Client.Script.txt" as TeamSelection
#Include "ManiaApps/Nadeo/TrackMania/Chase/Winners_Client.Script.txt" as Winners
#Include "ManiaApps/Nadeo/TrackMania/Chase/Medal_Client.Script.txt" as Medal
#Include "ManiaApps/Nadeo/TrackMania/Chase/Ladder_Client.Script.txt" as Ladder
#Include "ManiaApps/Nadeo/TrackMania/Chase/TeamConfirm_Client.Script.txt" as TeamConfirm
#Include "ManiaApps/Nadeo/TrackMania/Chase/FinishTimeout_Client.Script.txt" as FinishTimeout
#Include "ManiaApps/Nadeo/TrackMania/Chase/CheckpointTime_Client.Script.txt" as CheckpointTime
#Include "ManiaApps/Nadeo/TrackMania/Chase/Restart_Client.Script.txt" as Restart
#Include "ManiaApps/Nadeo/TrackMania/Chase/Relay_Client.Script.txt" as Relay

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
// Settings
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
#Setting S_ScriptEnvironment "production"

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
// Extends
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
***LoadLibraries***
***
Chase::Load();
ChaseTuto::Load();
Team::Load();
TeamSelection::Load();
Winners::Load();
Medal::Load();
Ladder::Load();
TeamConfirm::Load();
FinishTimeout::Load();
CheckpointTime::Load();
Restart::Load();
Relay::Load();
***

***StartApp***
***
declare netread Net_ChaseLadder_PlayLadderProgression for UI = -1;
declare PrevPlayLadderProgression = -123;
***

***AppLoop***
***
Team::Yield();
TeamSelection::Yield();
TeamConfirm::Yield();

if (PrevPlayLadderProgression != Net_ChaseLadder_PlayLadderProgression) {
PrevPlayLadderProgression = Net_ChaseLadder_PlayLadderProgression;
Ladder::PlayLadderProgression();
}
***

***UnloadLibraries***
***
Relay::Unload();
Restart::Unload();
CheckpointTime::Unload();
FinishTimeout::Unload();
TeamConfirm::Unload();
Ladder::Unload();
Medal::Unload();
Winners::Unload();
TeamSelection::Unload();
Team::Unload();
ChaseTuto::Unload();
Chase::Unload();
***
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/**
* Chase UI
*/
#Extends "ManiaApps/Nadeo/TrackMania/AppBase.Script.txt"

#Const Version "2017-04-27"
#Const ScriptName "ManiaApps/Nadeo/TrackMania/Chase/ChaseVersus.Script.txt"

// ---------------------------------- //
// Libraries
// ---------------------------------- //
#Include "ManiaApps/Nadeo/TrackMania/Chase/Chase_Client.Script.txt" as Chase

// ---------------------------------- //
// Settings
// ---------------------------------- //
#Setting S_ScriptEnvironment "production"

// ---------------------------------- //
// Extends
// ---------------------------------- //
***LoadLibraries***
***
Chase::Load();
***

***UnloadLibraries***
***
Chase::Unload();
***
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Loading

0 comments on commit ee9fe2b

Please sign in to comment.