about summary refs log tree commit diff
path: root/cards.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-03-16 01:04:51 -0400
committerJune McEnroe <june@causal.agency>2019-03-16 01:08:07 -0400
commit7fc5513a1fe1252c5bc27f7616bf12d3db014639 (patch)
tree581e287f8862cb22943be189dbe70df04eae5767 /cards.h
parentSimplify Cards constants (diff)
downloadcards-7fc5513a1fe1252c5bc27f7616bf12d3db014639.tar.gz
cards-7fc5513a1fe1252c5bc27f7616bf12d3db014639.zip
Add flags to fix up cards graphics
Diffstat (limited to 'cards.h')
-rw-r--r--cards.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/cards.h b/cards.h
index 2ce85a9..0ed1b8f 100644
--- a/cards.h
+++ b/cards.h
@@ -23,12 +23,15 @@
 enum {
 	Cards_Width = 71,
 	Cards_Height = 96,
+};
 
-	Cards_Club = 0,
+enum {
+	Cards_Club,
 	Cards_Diamond = 13,
 	Cards_Heart = 26,
 	Cards_Spade = 39,
 
+	// Add rank to suit to obtain card face index.
 	Cards_A = 1,
 	Cards_2, Cards_3, Cards_4, Cards_5, Cards_6, Cards_7, Cards_8, Cards_9,
 	Cards_10, Cards_J, Cards_Q, Cards_K,
@@ -44,11 +47,21 @@ enum {
 	Cards_Count,
 };
 
+// Some pointers will be NULL since there are gaps in the indices.
 struct Cards {
-	struct SDL_Surface *surfaces[Cards_Count];
+	SDL_Surface *surfaces[Cards_Count];
+};
+
+enum Cards_Flags {
+	// Set color key for Cards_Empty, Cards_X, Cards_O.
+	Cards_ColorKey = 1 << 0,
+	// Set alpha in card corners.
+	Cards_AlphaCorners = 1 << 1,
+	// Set red card borders to black.
+	Cards_BlackBorders = 1 << 2,
 };
 
-struct Cards *Cards_Load(struct SDL_RWops *rw);
+struct Cards *Cards_Load(SDL_RWops *rw, enum Cards_Flags flags);
 void Cards_Free(struct Cards *cards);
 
 #endif