Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a414cb3
Changes to hash and solver, adds db directory
hpghsu1314 Mar 3, 2026
4565aea
Removed unecessary get_remoteness function
hpghsu1314 Mar 3, 2026
d75a88c
Updated README
hpghsu1314 Mar 3, 2026
2c78958
reverted pancakes hashing, fixed solver state exploration where multi…
michael-wsp Mar 3, 2026
36399eb
Fixed state explosion issue
michael-wsp Mar 3, 2026
97c02c4
Fixed reverse behavior for no_hash
michael-wsp Mar 3, 2026
032f923
added stormy seas to gamemanager
Mar 3, 2026
ac92d3c
Merge branch 'main' of github.com:GamesCrafters/GamesmanPy
Mar 3, 2026
2ef7f50
Merge branch 'solver_change' of github.com:GamesCrafters/GamesmanPy
Mar 3, 2026
d1243f9
tried to reduce integer reps
Mar 4, 2026
6308826
added stormy seas
Mar 4, 2026
126f545
updated stormy seas
Mar 9, 2026
5d20aa5
Stormy Seas fixed
Apr 24, 2026
fd7474e
added the stormyseas.py file from gc internal
Apr 29, 2026
72226e8
tried to fix GUI strings + game logic
Apr 30, 2026
621e0da
Merge branch 'sp26-stormyseas' of github.com:GamesCrafters/GamesmanPy…
Apr 30, 2026
c0c0886
tried to do stuff :(
Apr 30, 2026
d622d07
added note to ignore stormyseas.py file, fixed indexing error in stri…
May 1, 2026
d65b07b
to_string method returned to what I wrote yesterday because it works …
May 1, 2026
32bcda8
added move buttons . kind of works but theres an offset from the boar…
May 1, 2026
191f8bb
only line changed is boat_pos, switched red and blue; feel free to ch…
May 12, 2026
1be9c73
reverted to original position where red boat is closer to port
May 16, 2026
cc24ad2
removed the debug stormyseas file as requested by Abraham
May 19, 2026
da98b56
Merge branch 'main' of github.com:GamesCrafters/GamesmanPy into sp26-…
hpghsu1314 May 20, 2026
a8c0329
Alphabetical order
hpghsu1314 May 20, 2026
a74019b
Added EOF character
hpghsu1314 May 20, 2026
2117734
Removed unnecessary character
hpghsu1314 May 20, 2026
e0f05a6
the arrows are now centered properly for the waves and boats. only is…
May 24, 2026
734a928
fixed winstate to hit one move earlier, so the GUI says puzzle is sol…
May 24, 2026
0bfbc59
fixed memory error issue via correcting hash function
SoraWongsonegoro May 25, 2026
671827b
the overlapping issue is fixed on gui, but solving for positions is r…
May 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions games/src/games/game_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from .snakestale import Snakestale
from .sokobaniq import SokobanIQ
from .sokobanlarge import SokobanLarge
from .stormyseas import StormySeas
from .test import Test
from models import *

Expand All @@ -24,6 +25,7 @@
"snakestale": Snakestale,
"sokobaniq": SokobanIQ,
"sokobanlarge": SokobanLarge,
"stormyseas": StormySeas,
"test": Test,
}

Expand Down
Loading