Coding a simple fishing game, logic being ignored (EDITED)
Beginner wants to learn Python to make simple games – where to start?
What are the biggest ever games made with Python and/or Pygame?
Simple snake game in Python - Code Review Stack Exchange
Hi there learnpython!
Just wanted to post an update on a project that I'm working - refactoring old BASIC games into modern Python. I've added 2 new games - Aceyducey, a simple card game and Amazing - a random maze generator which I've refactored into a simple CLI tool. If anyone has any comments or suggestions how to improve the code, that would be greatly appreciated.
In particular I'm unsure if there is a way to know if the approach used to generate a random maze in Amazing will always lead to a maze that is solvable? I've added the exit in a random location in the final row but haven't tested if that position can be visited from the entrance - I believe this would require representing each position in the maze as a node but I tried to follow the approach listed in the original source code.
Thanks for reading!
https://github.com/ctosullivan/Python-101-BASIC-Games
https://pastebin.com/XUjH54Na
(I've been told Pastebin is the way to go for sharing code, so yeah. Just wanted to show what i made!)