X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=spades.awk;h=1d0e9d41f12c0e9594e372f14bda450873a43a37;hb=2eec3f3f55bb79bfe489766c241525ef7c7ecf05;hp=9e0f63a94a3e5d4b46dc308d59c8d6c7674bbd6a;hpb=d8f1defa6ae54291c780a0226e350a8df4a3a191;p=~andy%2Frhawk diff --git a/spades.awk b/spades.awk index 9e0f63a..1d0e9d4 100644 --- a/spades.awk +++ b/spades.awk @@ -33,6 +33,7 @@ function sp_reset(type) if (type >= 1) { sp_state = "bid" # {new,join,bid,pass,play} sp_broken = 0 # Whether spades are broken + delete sp_hands # [p] Each players cards delete sp_looked # [i] Whether a player has looked a their cards delete sp_bids # [i] Each players bid delete sp_nil # [i] Nil multiplier 0=regular, 1=nil, 2=blind @@ -50,7 +51,6 @@ function sp_reset(type) sp_turn = 0 # Index of who's turn it is sp_player = "" # Who's turn it is sp_limit = 10 # Bag out limit / nil bonus - delete sp_hands # [p] Each players cards delete sp_players # [p] Player names players["name"] -> i delete sp_auths # [c] Player auth names auths["auth"] -> "name" delete sp_share # [c] Player teammates share["friend"] -> "name" @@ -61,9 +61,11 @@ function sp_reset(type) function sp_acopy(dst, src, key) { - if (isarray(src)) + if (isarray(src)) { + delete(dst) for (key in src) json_copy(dst, key, src[key]) + } } function sp_save(file, game) @@ -163,7 +165,7 @@ function sp_next(who, prev) function sp_shuf(i, mixed) { - asorti(sp_players, mixed, "sp_usort") + sp_usort(sp_players, mixed) for (i in mixed) { sp_order[i-1] = mixed[i] sp_players[mixed[i]] = i-1 @@ -173,7 +175,7 @@ function sp_shuf(i, mixed) function sp_deal( shuf) { say("/me deals the cards") - asorti(sp_deck, shuf, "sp_usort") + sp_usort(sp_deck, shuf) for (i=1; i<=52; i++) sp_hands[sp_order[i%4]][shuf[i]] = 1 sp_state = "bid" @@ -206,8 +208,10 @@ function sp_type(card) return substr(card, length(card)) } -function sp_usort(a,b,c,d) { - return rand() - 0.5 +function sp_usort(list, out) { + for (i in list) + out[i] = rand() + asorti(out, out, "@val_num_asc") } function sp_csort(i1,v1,i2,v2) { @@ -246,6 +250,12 @@ function sp_bid(who) sp_nil[who] == 2 ? "blind" : "n/a" } +function sp_passer(who) +{ + return sp_nil[(who+0)%4] == 2 || sp_nil[(who+1)%4] != 0 || + sp_nil[(who+2)%4] == 2 || sp_nil[(who+3)%4] != 0 +} + function sp_bidders( i, turn, bid, bids) { for (i = 0; i < 4; i++) { @@ -426,6 +436,14 @@ AUTH == OWNER && next } +AUTH == OWNER && +/^\.order (\w+) ([0-4])/ { + say(sp_channel, FROM " is cheating for " $2) + sp_order[$3] = $2 + sp_players[$2] = $3 + sp_player = sp_order[sp_turn] +} + AUTH == OWNER && sp_state == "play" && /^\.force (\w+) (\S+)$/ { @@ -437,6 +455,11 @@ sp_state == "play" && # Setup +match($0, /^\.newgame ?([0-9]+) *- *([0-9]+)$/, _arr) { + if (_arr[2] > _arr[1]) + $0 = $1 " " int(rand() * (_arr[2]-_arr[1])+_arr[1]) +} + /^\.newgame ?([0-9]+)?$/ { if (sp_state != "new") { reply("There is already a game in progress.") @@ -532,8 +555,11 @@ sp_state == "play" && sp_state ~ "(bid|pass|play)" && /^\.show/ { + delete _lines for (_i in sp_share) - say(_i " can play for " sp_share[_i]); + _lines[sp_share[_i]] = _lines[sp_share[_i]] " " _i + for (_i in _lines) + say(_i " allowed:" _lines[_i]) } !sp_valid && @@ -569,7 +595,7 @@ sp_state == "bid" && say(p, "You have: " sp_hand(p, p)) sp_state = "play" for (i=0; i<2; i++) { - if (sp_nil[i] == 2 || sp_nil[i+2] == 2) { + if (sp_passer(i)) { say(sp_team(i) ": select a card to pass " \ "(/msg " NICK " .pass )") sp_state = "pass" @@ -590,7 +616,7 @@ sp_state == "pass" && if (!(sp_from in sp_players)) { say(".slap " FROM ", you are not playing.") } - else if (sp_nil[_team] != 2 && sp_nil[_team+2] != 2) { + else if (!sp_passer(_team)) { reply("Your team did not go blind") } else if (sp_pass[sp_players[sp_from]]) { @@ -608,8 +634,8 @@ sp_state == "pass" && } # check for end of passing - if (((sp_nil[0] != 2 && sp_nil[2] != 2) || (sp_pass[0] && sp_pass[2])) && - ((sp_nil[1] != 2 && sp_nil[3] != 2) || (sp_pass[1] && sp_pass[3]))) { + if ((!sp_passer(0) || (sp_pass[0] && sp_pass[2])) && + (!sp_passer(1) || (sp_pass[1] && sp_pass[3]))) { for (i in sp_pass) { _partner = (i+2)%4 _card = sp_pass[i] @@ -680,7 +706,7 @@ sp_state == "play" && if (sp_state == "play" && _pile) say("It is " sp_player "'s turn! (" _pile ")") for (_i=0; sp_state == "pass" && _i<4; _i++) - if ((sp_nil[_i%2+0]==2 || sp_nil[_i%2+2]==2) && !sp_pass[_i]) + if (sp_passer(_i) && !sp_pass[_i]) say("Waiting for " sp_order[_i] " to pass a card!") }