summaryrefslogtreecommitdiffstats
path: root/functions.php
diff options
context:
space:
mode:
authorarun <arun@nubati.net>2007-01-16 15:00:03 +0000
committerarun <arun>2007-01-16 15:00:03 +0000
commit8c5281010622386c1c57a8ee5eec18ed89dfb039 (patch)
treeb023c2835cdc29f4a74a3ef42e06657509fcaecd /functions.php
parent651d44e67499ec7cae07c60c5351f65424c93279 (diff)
downloade-DoKo-8c5281010622386c1c57a8ee5eec18ed89dfb039.tar.gz
e-DoKo-8c5281010622386c1c57a8ee5eec18ed89dfb039.tar.bz2
e-DoKo-8c5281010622386c1c57a8ee5eec18ed89dfb039.zip
new sort function; should sorrt correctly for solos,etc
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/functions.php b/functions.php
index 221bea8..cecc63c 100644
--- a/functions.php
+++ b/functions.php
@@ -523,4 +523,24 @@ function set_gametype($gametype)
}
}
+function mysort($cards,$gametype)
+{
+ global $TRUMP,$DIAMONDS,$HEARTS,$CLUBS,$SPADES;
+
+ switch($gametype) {
+ case normal:
+ case trump:
+ default:
+ $ALL = array_merge($TRUMP,$DIAMONDS,$CLUBS,$HEARTS,$SPADES,$DIAMONDS);
+ break;
+ }
+
+ $compare = create_function("$a, $b", "return pos_array($a,$ALL)-pos_array($b,$ALL);");
+
+ usort ( $cards, $compare );
+
+ return;
+}
+
+
?> \ No newline at end of file