• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 14:38
CET 19:38
KST 03:38
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Team Liquid Map Contest #22 - Presented by Monster Energy4ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13
Community News
Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool24Weekly Cups (March 9-15): herO, Clem, ByuN win32026 KungFu Cup Announcement6BGE Stara Zagora 2026 cancelled12Blizzard Classic Cup - Tastosis announced as captains18
StarCraft 2
General
Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Serral: 24’ EWC form was hurt by military service Weekly Cups (March 9-15): herO, Clem, ByuN win Team Liquid Map Contest #22 - Presented by Monster Energy Weekly Cups (August 25-31): Clem's Last Straw?
Tourneys
WardiTV Team League Season 10 KSL Week 87 [GSL CK] #2: Team Classic vs. Team Solar 2026 KungFu Cup Announcement [GSL CK] #1: Team Maru vs. Team herO
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 517 Distant Threat Mutation # 516 Specter of Death Mutation # 515 Together Forever
Brood War
General
ASL21 General Discussion JaeDong's form before ASL BGH Auto Balance -> http://bghmmr.eu/ Gypsy to Korea BSL Season 22
Tourneys
[Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here!
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates
Other Games
General Games
Nintendo Switch Thread Path of Exile General RTS Discussion Thread Stormgate/Frost Giant Megathread Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
Things Aren’t Peaceful in Palestine US Politics Mega-thread Russo-Ukrainian War Thread Mexico's Drug War Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion Tokyo Olympics 2021 Thread General nutrition recommendations Cricket [SPORT]
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2649 users

Creating my first game - Part 1

Blogs > Leftwing
Post a Reply
Leftwing
Profile Blog Joined January 2011
Canada229 Posts
January 06 2012 06:48 GMT
#1
This blog is going to be about the development of my first game, which none of you will likely ever play or actually see. Depending on my results and how things work out I may post some screenshots of what it looks like.

Now to help you understand a bit about me:
I am an 18 YO kid about to graduate HS and take Computer Science in University somewhere here in my Province of Ontario.
I am a novice programmer. I know the basics of C++, and am currently learning Java from scratch.
I am creating this program in - you guessed it - Java. It may not be the best choice, but at the moment it is the best option I believe I can use.

Now about the game:

Will be a single player RPG. Will have Shit - or no graphics. Chances are if I ever graduate from text-input/output it will be in shitty paint.
The game will be simple - very simple.
If the game is to have graphics, it will be 2D, Likely a side scroller.

My goals for the game from beginning to end.

Player interaction with the world (through text input)
AI monster attack events (displaying damage taken and given)
Have a damage System (calculates damage based on lvl and attack skill)
Have a level system (player and monster)
Have a HP system
Have Monster types(Melee/Distance/Stationary)
Have items (potions, weapons, armors etc.)
Add player classes (melee, ranged, magic)
Add skills for classes (Sword, Axe, Club, Distance, Magic LVL)
Add a Quest (main objective for the player is to complete the quest)

Basically my plan is to learn enough that I can create basic events and eventually graduate to more complex stuff, however the first challenge I will have is where to start, and to be honest with you, I have no idea. Hopefully some of you Programmers on this site could help me along the way, or just guide me along a path. If anyone is interested in helping/assisting I'd be extremely grateful and welcoming.

So, this is where my first blog ends and my project begins. So far I've planned my damage and hit% system, but nothing has been coded. I have no idea where to start, but something tells me I'm designing something that won't be needed until later.

Thanks for anyone who took the time to read this, hopefully this doesn't just die off and I can get something big started here.

Until next time,
Leftwing


*****
Chronopolis
Profile Joined April 2009
Canada1484 Posts
Last Edited: 2012-01-06 07:14:53
January 06 2012 07:03 GMT
#2
Being roughly (metaphorically) in your shoes, I don't have much in the way of advice to offer. http://www-cs-students.stanford.edu/~amitp/gameprog.html is something nice to get lost in.

I screwed around in java trying to make a scrolling shoot-em up (I didn't get that far*). The menu is difficult add later on from what I found, so make sure you make your build a gameStart function that is repeatable and can be placed in some button code. although java has some built in gui to help you do that. (Still hard to understand). Java has documentation, it might help to take a close look. You definitely want to look up tutorials on tile-based games, possibly collision detection.

Don't spend too much time with sprites, but you probably will anyways (its addicting)

Some tricky parts that you'll need to figure out are how to store and load rpg data, and stuff like weapon stats or what not. Just make sure to google around hard to see if someone else has made a tutorial for what you are trying to do, before coding it yourself.
-Menu system
-Way of storing stats and arrays
-A plan of what classes for what units
Some website goes on to say, don't build engines, build a game. Start with something repititive (like make monster 1) and only then go back and build code to regulate it (make a class of monsters type, array of monsters)

Sorry for the jumbled post and good luck on your game!

*Basically what I ended up with was a 1 button menu game which had 1 spirite that could jump and fly on an invisible ground and fire a 360 spray of projectiles with alot of different sprites loaded from a spritesheet. And a esc button.
Leftwing
Profile Blog Joined January 2011
Canada229 Posts
January 06 2012 07:25 GMT
#3
On January 06 2012 16:03 Chronopolis wrote:
Being roughly (metaphorically) in your shoes, I don't have much in the way of advice to offer. http://www-cs-students.stanford.edu/~amitp/gameprog.html is something nice to get lost in.

I screwed around in java trying to make a scrolling shoot-em up (I didn't get that far). The menu is difficult add later on from what I found, so make sure you make your gameStart repeatable. although java has some built in gui to help you do that. (Still hard to understand). Java has documentation, it might help to take a close look. You definitely want to look up tutorials on tile-based games, possibly collision detection.

Some tricky parts that you'll need to figure out are how to store and load rpg data, and stuff like weapon stats or what not. Just make sure to google around hard to see if someone else has made a tutorial for what you are trying to do, before coding it yourself.


RPG data will be stored in XML files, this will include monster information, weapon/armor stats and other things that I might add early on. I have some experience with tile based games (Tibia) as I've been involved in the creation of private servers (known as Open Tibia), however that is C++ and not Java.

What I'm struggling with is understanding where to start. The thing that comes to mind first is creating the world and generating it's boundaries and rules, from there I think adding interaction with a player and then AI would be a good start, however that will likely be the hardest thing of all.

I found a tutorial that explains creating a world in Java, so that's where I'll be starting.
Osmoses
Profile Blog Joined October 2008
Sweden5302 Posts
January 06 2012 07:36 GMT
#4
Most programmers probably started a project like yours and got bored with it after a week. I would advice you to start smaller. Don't make one game for all of those things, rather make several with some of them. The most fun is in the polishing, and you're never going to get there if you spend all your time on the foundations. Also, I've found that whenever a hobby-project becomes too big and complicated I tend to lose interest :p Be sure to keep it organized, neat and simple.
Excuse me hun, but what is your name? Vivian? I woke up next to you naked and, uh, did we, um?
Leftwing
Profile Blog Joined January 2011
Canada229 Posts
January 06 2012 07:48 GMT
#5
On January 06 2012 16:36 Osmoses wrote:
Most programmers probably started a project like yours and got bored with it after a week. I would advice you to start smaller. Don't make one game for all of those things, rather make several with some of them. The most fun is in the polishing, and you're never going to get there if you spend all your time on the foundations. Also, I've found that whenever a hobby-project becomes too big and complicated I tend to lose interest :p Be sure to keep it organized, neat and simple.


Yup, that's what my girlfriend told me LOL. Basically my goal here is to create each piece step by step, one piece at a time. The way I'm planning to make this is essentially each piece will be added seperately to the game and development proceeds. Hopefully this way I don't get bored. Also, as long as someone is here to help me along the way I will manage to stay on task, so, keep commenting!

Thanks for the suggestions!
beg
Profile Blog Joined May 2010
991 Posts
Last Edited: 2012-01-06 08:02:51
January 06 2012 08:01 GMT
#6
if it's too big, look for people to do this together with. someone doing the art, someone doing the maps, someone doing the story, maybe a second coder...

try to make it a smartphone game that you can sell. that would be epic motivation.



hf gl
shannn
Profile Blog Joined May 2010
Netherlands2891 Posts
Last Edited: 2012-01-06 08:35:25
January 06 2012 08:23 GMT
#7
I'm also making a game but for iOS using Objective-C with Cocos2D as the framework (here,here,here) :D

I've learned at my college when starting any kind of software it's advised to first describe what your goals are.
After you've defined the goals, you then want to write down what your game should do, functions and non-functions.
Then you write down a priority list (I'd suggest using the MoSCoW list, google it ) of your functions.

That's just the documentation start.

When you're done with the documentation start you start writing down what entities/models classes you store your data in.
These are just holding the data in your game, e.g. you have a player that holds attributes like health,mana,attack,defense,armor etc. This is just 1 model class which only holds the data. You don't do anything yet with this class.
When you're done defining your entity/model classes you look at all the functions you have and you divide them all into controller classes. This is not final, just a rough basic start for your controllers.

Doing the above will probably require at least a month or more if you're working alone casually. HFGL P
The documentation and defining the entity/model classes took me a day and this is just a basic game.

It is advisable to always start with the core functions of your game and work from that point on (the basics first).
Like my game is a 2D RPG with battle systems like Final Fantasy thus my core functions are within the battle system.

Edit:
Oh and like others have said. Try to keep it simple :D
I first had a lot of redundant code and i'm spending more time into improving the code (my game is working with a few bugs) and trying to keep it simple. This is definitely the hardest part for any beginning (or experienced) programmer :D

Edit2:
haha

On January 06 2012 17:01 beg wrote:
if it's too big, look for people to do this together with. someone doing the art, someone doing the maps, someone doing the story, maybe a second coder...

try to make it a smartphone game that you can sell. that would be epic motivation.



hf gl

I'm doing this exactly :> It looks nice to have a game on your iPhone you created
http://www.teamliquid.net/forum/viewpost.php?post_id=6321864 Epic post.
Loser777
Profile Blog Joined January 2008
1931 Posts
January 06 2012 09:10 GMT
#8
I'd advise you to make your game as old school (text-based) as possible if you want to avoid spending the time learning Java's graphics API//libraries for games. From my perspective it sounds like it'll probably take you longer to write the quest that the game implements rather than implementing the code--though that depends on how experienced you are with Java.

At the very basic level you should plan our your classes and types before jumping into coding and be sure to develop incrementally! Write tester classes--even for things that seem trivial.
6581
Leftwing
Profile Blog Joined January 2011
Canada229 Posts
January 06 2012 09:29 GMT
#9
Well so far I've managed to make due with the graphic libraries, I managed to get a background and a moving character. The next step is to make the character follow boundaries set (instead of floating in the air and moving outside the background). Once I can do that I think it'll be a good start.

I've been looking into iPhone and Android app stuff for the past little while because my buddy has already been doing this for some time (Check out Corners! in the Android App store!), and I feel like that would be the next thing to get involved in. That said, I want to finish what I've started here.

@beg - Unfortunately this isn't my dreams where I get to work with a group of guys all creating some monstrous game that will take the internet by storm and make games like WoW and Maplestory pale in comparison. I just want to make something that I can be satisfied with knowing I can get a head start in this business.

Anyways, it's 4:30 and I have a life I have to wake up and live tomorrow, so goodnight! Another adventure awaits tomorrow!
CharlieBrownsc
Profile Blog Joined December 2010
Canada598 Posts
January 06 2012 09:36 GMT
#10
A) Don't do java, it's one of the worst programming languages to use as a learning language. It teaches you terrible habits, ie: solving most problems by just finding a class that works

B) Where are you going for cs?
SC2 ID: CharlieBrown.318, #1 bitbybit.Prime fan
Osmoses
Profile Blog Joined October 2008
Sweden5302 Posts
January 06 2012 11:36 GMT
#11
On January 06 2012 18:36 CharlieBrownsc wrote:
Don't do java, it's one of the worst programming languages to use as a learning language. It teaches you terrible habits, ie: solving most problems by just finding a class that works

That's just how modern coding works, why reinvent the wheel? Because knowing the intricacies of pixel drawing is going to help you make a better game?
Excuse me hun, but what is your name? Vivian? I woke up next to you naked and, uh, did we, um?
Leftwing
Profile Blog Joined January 2011
Canada229 Posts
January 06 2012 16:37 GMT
#12
On January 06 2012 18:36 CharlieBrownsc wrote:
A) Don't do java, it's one of the worst programming languages to use as a learning language. It teaches you terrible habits, ie: solving most problems by just finding a class that works

B) Where are you going for cs?


Queen's or U of T, I applied at York as a fall-back (my grades are just on the bubble of getting in for Queen's).
Zocat
Profile Joined April 2010
Germany2229 Posts
Last Edited: 2012-01-06 19:24:38
January 06 2012 19:23 GMT
#13
On January 06 2012 16:25 Leftwing wrote:
What I'm struggling with is understanding where to start. The thing that comes to mind first is creating the world and generating it's boundaries and rules, from there I think adding interaction with a player and then AI would be a good start, however that will likely be the hardest thing of all.

I found a tutorial that explains creating a world in Java, so that's where I'll be starting.


Start with a basic design document.
Which classes will you need, how do they interact with other classes/data/user input.
Think about your gameloop.
This design doc will answer your question "What should I start with first" btw

"I just start to program" is like the worst decision you can ever make.
CharlieBrownsc
Profile Blog Joined December 2010
Canada598 Posts
Last Edited: 2012-01-17 10:18:27
January 17 2012 10:14 GMT
#14
On January 07 2012 01:37 Leftwing wrote:
Show nested quote +
On January 06 2012 18:36 CharlieBrownsc wrote:
A) Don't do java, it's one of the worst programming languages to use as a learning language. It teaches you terrible habits, ie: solving most problems by just finding a class that works

B) Where are you going for cs?


Queen's or U of T, I applied at York as a fall-back (my grades are just on the bubble of getting in for Queen's).


No waterloo?

Oh well, still good schools
www.uwaterloorejects.com
I have to be a little bit biased

But on the topic of the programming. Practice modularization, and seperating the concerns of your program.

ie:Try to keep whatever does highscores as separate from whatever does levelling up, and so on and so forth. If they are interdependent, rather than integrated, changing the implementation of one part of the game won't mean you have to go scrolling through pages of code to make everything function

Heed this advice especially when dealing with UI and graphic projection. Get those functional early, and fine-tune them last

It makes tackling large things much less daunting
SC2 ID: CharlieBrown.318, #1 bitbybit.Prime fan
fanta[Rn]
Profile Blog Joined October 2004
Japan2465 Posts
Last Edited: 2012-01-17 14:22:33
January 17 2012 14:19 GMT
#15
Edit: Actually yeah, listen to the others too. Think about your game before actually writing any piece of code. But below is how you start coding


while(true)
{
render()
update()
}


That is how you start. During update you read keys and update all the changes to the game and then you render it. Then break the loop whenever the user chooses to exit the game

I can actually send you the source to a labyrinth "game" that I wrote recently. It's in Ruby and it's just terrible console output that I clear every time (flickers like crazy) but you can see how I went about the game and game scenario etc.
fanta[Rn]
Profile Blog Joined October 2004
Japan2465 Posts
January 17 2012 14:27 GMT
#16
Here's the code, I tried to comment it somewhat.
Disregard the Maze class, that might be too much for now. It's just an implementation of graph theory.

http://pastebin.com/16RuR7YH
Please log in or register to reply.
Live Events Refresh
Big Brain Bouts
17:00
#109
Harstem vs GgMaChineLIVE!
Clem vs Serral
RotterdaM908
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 880
LamboSC2 170
ProTech164
UpATreeSC 117
IndyStarCraft 61
StarCraft: Brood War
Britney 21623
EffOrt 833
hero 131
Mind 69
Bale 35
Rock 24
Movie 15
Shine 14
LancerX 12
Dota 2
Gorgc4586
League of Legends
JimRising 455
Counter-Strike
fl0m4126
Fnx 2252
byalli613
Heroes of the Storm
MindelVK8
Other Games
summit1g2561
singsing2279
Grubby2010
B2W.Neo641
Beastyqt518
ToD150
ArmadaUGS124
crisheroes114
QueenE97
KnowMe82
Trikslyr45
Organizations
Dota 2
PGL Dota 2 - Main Stream143
Other Games
BasetradeTV24
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• StrangeGG 57
• Adnapsc2 5
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• Kozan
• IndyKCrew
StarCraft: Brood War
• HerbMon 32
• Michael_bg 7
• blackmanpl 6
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV527
League of Legends
• Jankos1715
• Nemesis763
• Shiphtur241
Other Games
• imaqtpie701
Upcoming Events
Korean StarCraft League
8h 22m
RSL Revival
15h 22m
Maru vs Zoun
Cure vs ByuN
uThermal 2v2 Circuit
20h 22m
BSL
1d 1h
RSL Revival
1d 15h
herO vs MaxPax
Rogue vs TriGGeR
BSL
2 days
Replay Cast
2 days
Replay Cast
2 days
Afreeca Starleague
2 days
Sharp vs Scan
Rain vs Mong
Wardi Open
2 days
[ Show More ]
Monday Night Weeklies
2 days
Sparkling Tuna Cup
3 days
Afreeca Starleague
3 days
Soulkey vs Ample
JyJ vs sSak
Replay Cast
4 days
Afreeca Starleague
4 days
hero vs YSC
Larva vs Shine
Kung Fu Cup
4 days
Replay Cast
5 days
The PondCast
5 days
WardiTV Team League
5 days
Replay Cast
6 days
WardiTV Team League
6 days
Liquipedia Results

Completed

Proleague 2026-03-18
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
CSL Elite League 2026
RSL Revival: Season 4
Nations Cup 2026
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
CSL 2026 SPRING (S20)
CSL Season 20: Qualifier 1
Acropolis #4
IPSL Spring 2026
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.