this post was submitted on 05 Jul 2023
21 points (100.0% liked)

GameDev

2725 readers
2 users here now

A community about game development.

Rules:

More rules might follow if they become necessary; general rule is don't be a pain in the butt. Have fun! ♥

GameDev Telegram chat.

founded 1 year ago
MODERATORS
 

I made a horrible mistake with my first game

So for context: I'm a programmer and I like the idea of not using a game engine, but I have no real prior experience with game development specifically.

I thought it was a good idea to make a text adventure game (think Zork) in C, since the language offers great portability, including the ability to run code on the 6502. Also a text adventure game made sense because I can't make art and idk anyone else who wanted to work on a game with me.

This was a terrible idea for a few reasons:

  1. A text adventure game is impossible to make with a small scope
  2. My from-scratch engine wasn't really designed with modifying the game data mid-development in mind
  3. I have no clue what I'm doing.

I just don't know what to do now. Any ideas? @gamedev

you are viewing a single comment's thread
view the rest of the comments
[–] jhell@lemm.ee 1 points 1 year ago

Hey, I'd advise you to try and do a very small project on a dedicated game engine, so you can get an idea of how they structure the data and why. In my case, I had a traditional education in programming, and when I first used Unity, it was really hard to understand the logic behind game objects and why they did it that way. Once it clicked though, it made sense, and if I had to do a custom game engine today I know I'd take inspiration from it. Could help you unlock your situation. In any case, don't despair, as you had a great learning experience! People's first game rarely get completed.