Did you finish your first game?

The place for chatting and discussing subjects unrelated to Wesnoth.

Moderator: Forum Moderators

Did you finish the first game you tried to make?

Yes
10
32%
No
21
68%
I came back several years later and finished it
0
No votes
 
Total votes: 31

User avatar
pauxlo
Posts: 1047
Joined: September 19th, 2006, 8:54 pm

Re: Did you finish your first game?

Post by pauxlo »

I think my first computer game project, many years ago, was a try at an implementation of chess ... by MS-DOS batch files. I had a nice (text-based) user-interface, but I didn't succeed in checking allowed moves. (Knight was possible, but bishop not any more.)

So, not finished.

I don't think I have done anything which would count as a game since then, apart from my current project, which still is not finished (but already playable).
User avatar
Sgt. Groovy
Art Contributor
Posts: 1471
Joined: May 22nd, 2006, 9:15 pm
Location: Helsinki

Re: Did you finish your first game?

Post by Sgt. Groovy »

Yes, it was a Russian Roulette I wrote on the VIC-20 BASIC when I was something like 8 or 9. The only other one I have completed was a Minesweeper with huge-ass map, written in Turbo Pascal. The incompleted ones include a text adventure, a graphical adventure, MUD, tabletop RPG (it was a pen-and-paper one, but it did include character creation and maintenance software I wrote from scratch) and a random terrain generation program that could be used in a FPS or flight simulator.
Tiedäthän kuinka pelataan.
Tiedäthän, vihtahousua vastaan.
Tiedäthän, solmu kravatin, se kantaa niin synnit
kuin syntien tekijätkin.
User avatar
Viliam
Translator
Posts: 1341
Joined: January 30th, 2004, 11:07 am
Location: Bratislava, Slovakia
Contact:

Re: Did you finish your first game?

Post by Viliam »

I don't remember. It was cca 20 years ago. I remember finishing some games (some of them are still on my disk, though not the earlier ones), but I can't tell if they were the first ones.

My first games I remember were:
- a card memory game (each player looks at 2 cards, if you find a pair you take it)
- a maze game (sequence of maze levels, in each you take a key and open the corresponding doors)

Neither of these games needed animation and the navigation was easy. Both required just arrows and possibly Enter or Esc keys. (The card game was before I had a mouse, so you selected a card moving a card-cursor by arrows.)

Heh, I still remember how difficult it seemed at that time to make an algorithm for shuffling cards. It took a few days of thinking and redesigning, just to invent essentially this...

Code: Select all

cards = list_of_values
cards = cards + cards  # two of each kind
shuffled = empty_list
while (not empty(cards)) {
  random_index = random_number_between(1, length(cards))
  shuffled = shuffled + cards[random_index]
  cards[random_index] = cards[length(cards)]
  cards = cards[1 .. length(cards)-1]
}
...except it was an equivalent of this in Basic. (And I used chars for card values and strings for lists.) I was so proud of having finished this. :D
Actually, writing a formula for "random_number_between(1, length(cards))" was a non-trivial task at the time.
User avatar
Hulavuta
Posts: 1668
Joined: October 11th, 2008, 8:17 pm
Location: United States

Re: Did you finish your first game?

Post by Hulavuta »

I remember I had everything planned out but never even started. I think that qualifies as a no.

EDIT: What happens if this thread is still around in a few years and we have gotten back to our game and finished it?
F:tGJ, Saurian Campaign
The Southern Chains, a fanfic
“The difference between winners and champions is that champions are more consistent."
~Sierra
User avatar
Viliam
Translator
Posts: 1341
Joined: January 30th, 2004, 11:07 am
Location: Bratislava, Slovakia
Contact:

Re: Did you finish your first game?

Post by Viliam »

Hulavuta wrote:EDIT: What happens if this thread is still around in a few years and we have gotten back to our game and finished it?
You already know how to use the EDIT button, so... :lol2:
User avatar
Hulavuta
Posts: 1668
Joined: October 11th, 2008, 8:17 pm
Location: United States

Re: Did you finish your first game?

Post by Hulavuta »

I mean editing the poll, lol.
F:tGJ, Saurian Campaign
The Southern Chains, a fanfic
“The difference between winners and champions is that champions are more consistent."
~Sierra
User avatar
SpoOkyMagician
Posts: 281
Joined: September 5th, 2008, 8:04 am
Location: I have no idea...

Re: Did you finish your first game?

Post by SpoOkyMagician »

Well... I wrote my first game back in high school in C++ (A console application. I was a beginner to C++ back then...) I do recall finishing it but, it was nothing impressive to say the least... I don't think I have the code anymore. (Not that it matters. It wasn't that fun anyway... lol) It was a very simplistic, text based, RPG. (A battle/encounter system I believe.) You would encounter (infinitely) enemies until you die. Then, it's game over... (Not much of a game... Although, it worked.) I would like to try making a new text based rpg someday though...
"You don't have to understand me, I'm just there!" ~ SpoOkyMagician
Creator of: Unwelcome Guests Series, Modifiable Android Project, SpoOky's Survivals, and many more... (Most of my old stuff is gone.)
(User Page)
Post Reply