X-Git-Url: https://jasonwoof.com/gitweb/?p=peach-cgt.git;a=blobdiff_plain;f=client.coffee;h=73fffa1631cc0fd2a42cf0f1ef880ceedef098e1;hp=95e130671bbeecd4bf3b664f996f05638e8572b1;hb=8c6e422dbf34db0f751e392e2e9d86fcdedf4aa7;hpb=46e1ca575f0a419dffac2dc652a7cae08410bff3 diff --git a/client.coffee b/client.coffee index 95e1306..73fffa1 100644 --- a/client.coffee +++ b/client.coffee @@ -1,3 +1,9 @@ +### +Peach CGT -- Card Game Table simulator +Copyright (C) 2011 Jason Woofenden +Lincensed under AGPLv3. Source here: https://gitorious.org/peach-cgt +### + # globals $table = null table_width = 0 @@ -44,10 +50,18 @@ transform_y = (y) -> return y unless state.agent is 'p2' return flip_y y -next_card_z = -> return top_card_z += 1 +next_card_z = -> + top_card_z += 1 + # p1 gets even numbers, p2 gets odd numbers + if state.agent is 'p1' + top_card_z += top_card_z % 2 + else + top_card_z += 1 - (top_card_z % 2) + + show_message "new z: #{top_card_z}" + + return top_card_z -bring_card_to_front = (card) -> - card.view.css "z-index": next_card_z() new_blank_card = (x, y, css_class) -> view = $ $ "
" @@ -61,6 +75,9 @@ find_pile = (x, y) -> return pile return null +in_your_hand = (card) -> + return (not (card.pile?)) and ((transform_y card.y) < (card_height * 0.8)) + uninstantiate_card = (card) -> show_message "uninstantiate card #{card.number}" card.view.remove() @@ -77,6 +94,9 @@ instantiate_card = (card) -> else card_class = 'your_card' + if in_your_hand card + card_class = "#{card_class} your_hand" + if card.z > top_card_z top_card_z = card.z @@ -97,7 +117,7 @@ instantiate_card = (card) -> if card.flipped view.addClass 'flipped' $table.append view - view.draggable containment: '#table', grid: [20, 20] + view.draggable grid: [20, 20] view.bind 'dragstart', (event, ui) -> view.css 'z-index': card.z = next_card_z() if card.pile? @@ -130,11 +150,12 @@ send_updates = -> messages = outgoing_messages outgoing_messages = [] + show_message "#{server_url}/set" $.ajax "#{server_url}/set", { cache: false data: { agent: state.agent - game: 'test' # FIXME, and in the /get call too + game: state.slug messages: JSON.stringify(messages) } type: 'POST' @@ -152,7 +173,7 @@ send_updates = -> error_lag = 3 poll_for_updates = -> - $.ajax "#{server_url}/get?agent=#{state.agent}&game=test", { + $.ajax "#{server_url}/get?agent=#{state.agent}&game=#{state.slug}", { cache: false type: 'GET' dataType: 'json' @@ -175,9 +196,14 @@ initialize_cards = () -> $('.card').remove() top_card_z = 0 # instantiate cards in play + hide_deck_designer = false for card in state.cards + if card.owner is state.agent + hide_deck_designer = true delete card.view - instantiate_card card unless card.pile? + + if hide_deck_designer + $('#deck_designer').remove() unless piles? piles = [ # global @@ -196,6 +222,7 @@ initialize_cards = () -> update_pile_views() +# also makes sure all non-piled cards are instantiated update_pile_views = -> ps = {} for card in state.cards @@ -211,6 +238,9 @@ update_pile_views = -> uninstantiate_card card else ps[card.pile] = { total: 1, top_card: card, top_z: card.z } + else + # not in a pile + instantiate_card card unless card.view? for pile in piles # where should the caption be? @@ -232,41 +262,155 @@ update_pile_views = -> card_count = ps[pile.key].total if ps[pile.key]? pile.$caption.children('.n_cards').html n_cards card_count +possible_cards = {} + +valumenous = (val) -> return true unless val is '' or val is ' ' + +init_possible_cards = -> + for card in window.cs_cards + text = "#{card.cardname} (#{card.faction})" + if valumenous card.attack or valumenous card.defense + text += " #{card.attack}/#{card.defense}" + text += "
#{card.type}" + if valumenous card.subtype + text += " • #{card.subtype}" + text += "
cost: #{card.cost} thresh: #{card.threshold}
" + text += card.rules + + summary = text.replace(/
/g, "\n") + + possible_cards[card.id] = {id: card.id, text: text, summary: summary} + + +init_card_designer = -> + show_message 'init_card_designer' + cards_in_deck = {} + container = $ '#deck_designer' + init_possible_cards() + ul = $ $ '