Klondike Solitaire game for Varvara.
Go to file
~d6 13dab7c80d use ESC to restart game, update README 2024-07-28 00:47:43 -04:00
.gitignore initial commit 2024-07-12 22:26:33 -04:00
README.md use ESC to restart game, update README 2024-07-28 00:47:43 -04:00
card-sprites.tal remap sprites, fix colors 2024-07-16 20:49:53 -04:00
cards.tal remap sprites, fix colors 2024-07-16 20:49:53 -04:00
chr.py remap sprites, fix colors 2024-07-16 20:49:53 -04:00
game1.png smaller screenshots 2024-07-27 22:17:35 -04:00
game2.png smaller screenshots 2024-07-27 22:17:35 -04:00
kodiak.rom use ESC to restart game, update README 2024-07-28 00:47:43 -04:00
kodiak.tal use ESC to restart game, update README 2024-07-28 00:47:43 -04:00
mask-sprites.tal initial commit 2024-07-12 22:26:33 -04:00
mask2.tal weird intermediate state 2024-07-16 10:06:58 -04:00
start.png smaller screenshots 2024-07-27 22:17:35 -04:00

README.md

kodiak

Kodiak is an implementation of Klondike Solitaire for theUxn/Varvara ecosystem virtual machine.

screenshot of initial solitaire deal

controls

  • Use the mouse to move the pointer
  • Click to pick up cards; click again to drop them
  • Press Esc to restart the game
  • Press Return to print internal game state

details

Currently Kodiak is very limited:

  • Can't move cards from the foundation
  • Must manually move every card
  • No undo functionality
  • No scoring or timing
  • No music or animations
  • No splash screen
  • No buttons to restart or quit

Future releases may relax some or all of these constraints.

screenshot of solitarire mid-game

building and running

Building the Kodiak ROM requires a Uxn assembler:

$ uxnasm kodiak.tal kodiak.rom
Assembled kodiak.rom in 10923 bytes(16.73% used), 253 labels, 0 macros.

Running the Kodiak ROM requires an emulator. For example:

$ uxnemu kodiak.rom

infrequently-asked questions

Is dragging cards buggy?

You don't need to hold down the mouse button when dragging a card. Just click once to pick up and click again to release.

Is this harder than other solitaire games?

Probably, yes. In addition to not having an "undo" feature, Kodiak does not check to see if a solitaire deal is winnable or not, meaning that some games would probably be impossible to win no matter how you played them.

Can I make the game bigger?

Many emulators support a zoom option. For example, uxnemu and uxn11 both use the F1 key to toggle zoom levels.

The game size is intentionally small to support older platforms with lower screen resolution, such as the Nintendo DS.

I won the game and the cards didn't bounce!

That isn't a question. (Also, sorry!)

Why did a bunch of weird numbers appeared in the console?

Currently hitting Return will dump the internal state of the game for debugging purposes. This produces a lot of output but doesn't otherwise affect the game.

Will you add support for my preferred solitaire variant?

Probably not, but maybe.

I am considering adding support for Sawayama Solitaire. Depending on how that goes I may add support for other variants as well.

another screenshot of solitaire

Kodiak was built by d_m, 2023-2024