All Questions
Tagged with object-oriented game
213 questions
7
votes
4
answers
187
views
Deck Value Bet-Like Game
I have just gotten into Object Oriented Programming and I've been practicing it through Python. But I think I still haven't clearly grasped how it should be used effectively. I've created a game Using ...
3
votes
2
answers
185
views
BlackJack in python
I began creating blackjack in python; however, I'm looking to simulate it, so I'm thinking I'm going to need to optimize it so that I don't just leave my computer running for three hours waiting for ...
3
votes
0
answers
108
views
Text-Based Multiplayer RPG Engine using Flask & React
As a final project for a software engineering bootcamp, I decided to make a text-based multiplayer RPG game engine. Using Python, Flask, & Flask-SocketIO for the backend and React & TypeScript ...
5
votes
2
answers
289
views
2048 game in Java
I am a beginner learning Java, and I coded a command line version of the game 2048 for practice. Any feedback, especially regarding best practices, object-oriented principles, and tidying up the code ...
2
votes
3
answers
163
views
Othello (Reversi) in C++17 and CMake
Othello is a two-player strategy game typically played over the board.
I implemented Othello in C++17 with CMake as the build system. I'm looking for feedback on cleanness, readability, and ...
3
votes
1
answer
253
views
Simple blackjack program in Java
I wrote this blackjack game for my APCSA class (already submitted) and was wondering if anyone had feedback on what parts of it are improperly written. My main concern is the fact that I am printing ...
3
votes
2
answers
3k
views
Event System using C++
I am excited to share that I have developed an event system in C++. I have always been passionate about programming and have long aspired to create a low-level game engine solely using C++, OpenGL, ...
2
votes
2
answers
153
views
OOP tic-tac-toe
I have created my first personal project - tic tac toe game. It is my first time approaching code using Object-Oriented paradigm and I would like to get feedback on it and on aspects where I can ...
0
votes
2
answers
444
views
OOP Tic Tac Toe Game
I have built a project OOP Tic Tac Toe. I am beginner-intermediate developer. Can you tell me what I can improve, what I did wrong and what to look up to? This is my first OOP project. I'm happy that ...
5
votes
1
answer
432
views
Simple Ellipse Collision Mini Game
I am doing an exercise to help me understand C#and OOP. The exercise is supposed to teach me about ...
5
votes
3
answers
1k
views
Simple N Puzzle console game
I am completely new to object oriented programing (OOP). I have also never worked with C# before. The exercise from my book had some requirements that should be ...
1
vote
2
answers
91
views
Object Oriented Hangman in Python Version 2.0
I am looking for as much criticism as possible. Specifically I am trying to institute BEST PRACTICES for OOP and game design. Enjoy!
Github hangman repository
Each Class is in a separate file and ...
2
votes
1
answer
356
views
Pong in c++ console app
I would really appriciate if someone could review my code and give me feedback. This was my first multi file project.
Main:
...
4
votes
1
answer
187
views
GUI tower defense: path and enemies
Working on creating new tower defense in JS. May be port to React.
How to improve? Only made enemies and path so far.
In below demo, path is white background and enemy is red circles and green squares....
3
votes
1
answer
216
views
pygame with infinitely scrolling background - handling of sprites movement
In my current project, I try to implement the basic logic of the game "Vampire Survival" (Little impression of the first level can be seen in this video on Youtube).
Question
I want to know, ...