include "alldifferent.mzn"; include "globals.mzn"; include "awards.mzn"; include "ranking.mzn"; include "scoring.mzn"; include "sanity.mzn"; include "artists.mzn"; include "dealing.mzn"; % Ignoring these for now % include "double.mzn"; include "drawone.mzn"; % include "hidden.mzn"; % include "simultaneous.mzn"; include "symbols.mzn"; /* This file includes the core gameplay rules ie, how many cards are getting played each round who plays the closing card etc. */ % Calculate total cards of an artist played per round constraint forall (a in Artists, r in Rounds) ( CardsForArtist[r, a] = sum(p in Players) (visible_count_per_round_per_artist_per_player[r,p,a]) ); % Max number of visible cards can be 6 for any artist per player var 5..6: MaxVisibleCards; constraint MaxVisibleCards = if card(Players)>2 then 6 else 5 endif; % Maximum MaxVisibleCards of the artist with maximum cards % TODO: Replace with at_most, if this isn't cleaned up after simultaneous constraint forall(r in Rounds) (max(row(CardsForArtist,r)) = MaxVisibleCards); % second highest value should not be the max constraint forall(r in Rounds) (sort(row(CardsForArtist, r))[4] != MaxVisibleCards); % Temporary variable to see how many cards you've played TOTAL per round array[Rounds,Players] of var 1..20: TotalCardsPlayed; constraint forall(r in Rounds, p in Players) ( % TODO: Change this to played cards from VISIBLE (hidden) TotalCardsPlayed[r,p] = sum(a in Artists) (visible_count_per_round_per_artist_per_player[r,p,a]) ); % Calculate maximum cards any player can play in first round array[Rounds,Players] of var int: StartingCardsInHand; % Starting Cards for First Round = Cards Dealt constraint forall(p in Players) ( StartingCardsInHand[Round1,p] = CardsDealtPerRound[Round1] ); % Playable Card Calculation in drawone.mzn % Starting cards for subsequent rounds = Playable Cards from previous round - Cards Played + cards dealt constraint forall(p in Players) ( StartingCardsInHand[Round2,p] = PlayableCards[Round1,p] - TotalCardsPlayed[Round1,p] + CardsDealtPerRound[Round2] ); constraint forall(p in Players) ( StartingCardsInHand[Round3,p] = PlayableCards[Round2,p] - TotalCardsPlayed[Round2,p] + CardsDealtPerRound[Round3] ); constraint forall(p in Players) ( StartingCardsInHand[Round4,p] = PlayableCards[Round3,p] - TotalCardsPlayed[Round3,p] + CardsDealtPerRound[Round4] ); % For every round, you must start with more cards than you play constraint forall(r in Rounds, p in Players) ( StartingCardsInHand[r,p] >= TotalCardsPlayed[r,p] ); % TODO: Move to simultaneous % The last player must have played atleast one card of the top artist constraint forall(r in Rounds) ( visible_count_per_round_per_artist_per_player[r,last_player[r],sorted_artists_per_round[r,1]] >=1 ); % TURN ORDER STUFF constraint forall(r in Rounds) ( NominalTurnCount[r] = TotalCardsPlayed[r, last_player[r]] ); %All players who played nominal turns var set of Players: Pn1; var set of Players: Pn2; var set of Players: Pn3; var set of Players: Pn4; % First player in all future rounds is determined by the next player from the player who finished previous round constraint first_player[Round2] = if last_player[Round1] = card(Players) then 1 else enum_next(Players, last_player[Round1]) endif; constraint first_player[Round3] = if last_player[Round2] = card(Players) then 1 else enum_next(Players, last_player[Round2]) endif; constraint first_player[Round4] = if last_player[Round3] = card(Players) then 1 else enum_next(Players, last_player[Round3]) endif; constraint Pn1 = if (first_player[Round1] < last_player[Round1]) then first_player[Round1]..last_player[Round1] else Players diff (first_player[Round1]..last_player[Round1]) endif; constraint Pn2 = if (first_player[Round2] < last_player[Round2]) then first_player[Round2]..last_player[Round2] else Players diff first_player[Round2]..last_player[Round2] endif; constraint Pn3 = if (first_player[Round3] < last_player[Round3]) then first_player[Round3]..last_player[Round3] else Players diff first_player[Round3]..last_player[Round3] endif; constraint Pn4 = if (first_player[Round4] < last_player[Round4]) then first_player[Round4]..last_player[Round4] else Players diff first_player[Round4]..last_player[Round4] endif; constraint forall(p in Players) (TotalCardsPlayed[Round1, p] = if p in Pn1 then NominalTurnCount[Round1] else NominalTurnCount[Round1] - 1 endif); constraint forall(p in Players) (TotalCardsPlayed[Round2, p] = if p in Pn2 then NominalTurnCount[Round2] else NominalTurnCount[Round2] - 1 endif); constraint forall(p in Players) (TotalCardsPlayed[Round3, p] = if p in Pn3 then NominalTurnCount[Round3] else NominalTurnCount[Round3] - 1 endif); constraint forall(p in Players) (TotalCardsPlayed[Round4, p] = if p in Pn3 then NominalTurnCount[Round4] else NominalTurnCount[Round4] - 1 endif);