Tagged Questions
0
votes
2answers
528 views
Game Logic - Tree Based Game Design
I'm trying to write an easy to use and extremely modifiable game engine in C++. I was thinking about using a tree to store game data. All objects would inherit a from the Node class and would have ...
10
votes
5answers
1k views
Data Structures for Logic Games / Deduction Rules / Sufficient Set of Clues?
I've been cogitating about developing a logic game similar to Einstein's Puzzle , which would have different sets of clues for every new game replay.
What data structures would you use to handle the ...