aboutsummaryrefslogtreecommitdiffstats
path: root/game/plugins/5000points.usdx
diff options
context:
space:
mode:
authors_alexander <s_alexander@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-01-12 19:15:46 +0000
committers_alexander <s_alexander@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-01-12 19:15:46 +0000
commit8163ee219fbde2eb2508d57c8c1498e66df9db0d (patch)
tree968453d97f4df43a8c1112773928ff05598f2862 /game/plugins/5000points.usdx
parent067a9f3484d6abae175453acb28bd556e0f570a4 (diff)
downloadusdx-8163ee219fbde2eb2508d57c8c1498e66df9db0d.tar.gz
usdx-8163ee219fbde2eb2508d57c8c1498e66df9db0d.tar.xz
usdx-8163ee219fbde2eb2508d57c8c1498e66df9db0d.zip
added previous ignored plugins
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2073 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'game/plugins/5000points.usdx')
-rw-r--r--game/plugins/5000points.usdx48
1 files changed, 48 insertions, 0 deletions
diff --git a/game/plugins/5000points.usdx b/game/plugins/5000points.usdx
new file mode 100644
index 00000000..7ebd23b4
--- /dev/null
+++ b/game/plugins/5000points.usdx
@@ -0,0 +1,48 @@
+function plugin_init()
+ register('party mode: 5000points', '1.00', 'USDX Team', 'http://www.UltrastarDeluxe.org');
+
+ require('Usdx.Party')
+ require('Usdx.ScreenSing');
+
+ local Mode = {}
+
+ Mode.Name = '5000points'
+ Mode.CanNonParty = true;
+ Mode.CanParty = true;
+ Mode.OnSing = 'Sing';
+ Mode.AfterSing = 'Calculate_Winner';
+
+ Usdx.Party.Register(Mode)
+
+ return true;
+end
+
+function Sing()
+ Scores = ScreenSing.GetScores();
+
+ for i = 1, #Scores do
+ if (Scores[i] >= 5000) then
+ ScreenSing.Finish();
+ break;
+ end
+ end
+
+ return true;
+end
+
+function Calculate_Winner()
+ Scores = Scores or ScreenSing.GetScores();
+ local Ranking = {};
+ for i = 1, #Scores do
+ if Scores[i] >= 5000 then
+ Ranking[i] = 1
+ else
+ Ranking[i] = #Scores
+ end
+ end
+
+ Party.SetRoundRanking(Ranking);
+ Scores = nil;
+
+ return true;
+end \ No newline at end of file