Á¤¼ºÈÆ
    How to Make Your Own Game
  https://gamedevelopment.tutsplus.com/articles/how-to-make-your-own-game--gamedev-5204



When you get stuck in a video game, you might head to GameFAQs to find a walkthrough to help you get through it. When you get stuck making your first video game, what can you do? That's where this article comes in: think of this as a walkthrough for developing your first game.

My First Game

Before we get to the video game development walkthrough, I want to tell you about my first game. It was a simple text based adventure inspired by a MUD called Divine Blood:

How to Make Your First Game Mine was inspired by Divine Blood

I first programmed it as just a simple room using the TI-83+ Calculator, and later made into a full-fledged town using Java in my last year of high school. I never finished that game (it didn't go beyond the first town) and I don't even think I have the code any more.

Unfortunately, my experience isn't uncommon for game developers. Many developers start a game but never finish it. So how can you increase your chances of finishing your first game? Enter this video game development walkthrough.

The Four Levels of Game Development

If developing a game is a game in itself, then it consists of four levels: Plan, Prototype, Develop, and Release.

Just like in a video game, each level is more difficult than the last. Each level also has its own encounters (the problems and difficulties you are likely to come up against) and its own end level boss (which signifies when you are ready to move on to the next level).

This walkthrough will guide you through the process of successfully creating your first game. It will incorporate resources and quotes from other game professionals, as well as insights about how implementing the walkthrough for my own first game would have helped me to finish it.

Level 1: Plan

Remember, the first 90% of your game takes 90% of the time; the last 10% takes the remaining 90% of the time. Plan accordingly.
— Ian Schreiber

The first level, and arguably the most important level, is planning — planning out every aspect of the game before you even begin coding. The goal of this level is to consider everything about your game up front so that you don't have to improvise later.

When you first start making your game, the best thing to do is write down all the details. Think about everything you want in your game, and then write it down. Usually this is pretty easy at first, as your mind races with lots of neat ideas that you will want to incorporate into your game. However, as time goes by, this level becomes increasingly harder to complete.

How to Make Your First Game Notes

As you jot down your ideas, also jot down the details of these ideas: how they will work, how they will affect the player experience, and how they will affect the gameplay. You don't want to leave any big holes in your design that will cause you to struggle later. It becomes more difficult to finish a game as the problems you encounter increases. Thus, the secret to finishing a game is to deal with problems in small amounts and without letting them pile up all at once.

Take a look at these tutorials for more advice on planning a gamedev project:

 

Game development is about the trade-offs — great games don't have to do everything, they just have to a limited number of things well.
— Patrick Wyatt

Because of this, it is extremely important that you do not skip this level and head straight into development (Level 3). If you did, you would encounter hard problems that would cause you to quickly become demotivated and stop. If you've played the Halo series, just think about how hard the game would have been if you encountered a Hunter pair during the first level of your first playthrough. You would have been hard pressed to continue playing if you kept dying over and over again to these massive obstacles.

This is why the main encounter for this level is a desire to stop planning and begin coding. Again, it is important that you plan out as much as you can before you begin coding. For you to have the greatest chance of finishing your first game, you must resist this urge and stick to Level 1.

The boss fight for this level is questions. If you review all your notes and you can't think of any more questions, then you are ready to move on to the next level. If, however, you read over your notes and you still have a couple of questions about how things will work, you should probably work those out before moving on.

There are times when you can't answer a question because it deals more with balancing issues rather than functional issues. In this case you are also probably ready to move on to the next level.

If I had planned out my text based adventure game properly, I would have mapped out the entire game, decided what all the items the player could purchase would be and where they could purchase them from, designed all the monsters and dungeons, and even figured out which loot would be dropped where and when. That's a lot of detail that should be planned out before coding! For this reason, I don't recommend making a text adventure game as your first game. Start small.

Related Posts

 

Level 2: Prototype

Design is a process, not an outcome.
— Christopher Simmons

The second level of game development is prototyping. In this level, you test out the core mechanics and features of the game to work out any balancing issues. You want to flesh out your ideas quickly by using low fidelity prototyping so that you can know before you start coding what will and will not work.

If a game is fun to play at this level, you know it will be fun to play when it is finished. Remember that you will be playing this game a lot as you code it, so you'd better make sure it's fun!

No matter what your score is, you'll enjoy it, and want to play it again.
— Stan Jarocki

Even though this is Level 2, it is very common to prototype ideas as you are writing them down in the planning level. Now you are probably thinking: "hold on - you just told me that I shouldn't skip levels, but here you are telling me that I can skip to this level!"

Think of it like level skipping using the secret warp pipes in Super Mario Bros. The first time you play the game, you're probably going to play each level in order. It isn't until the second or third playthroughs that you use the warp pipes to finish the game faster. The same thing applies with Levels 1 and 2, except that going back and forth between planning and prototyping helps you flesh out your ideas faster.

How to Make Your First Game From Super Mario Bros

From Super Mario Wiki.

Levels 1 and 2 are interchangeable, as long as you don't progress to Level 3 before you are ready. Maybe you want to test out your core mechanic before you spend more time on details. Perhaps you want to test out a new feature of your game to ensure that it will work as intended. These are all good reasons to want to prototype while you plan; just ensure that each prototype only focuses on one thing at a time, and that each time you prototype the gameplay it's still fun.

Great gameplay is a stream of interesting decisions the player must resolve.
— Bruce Shelley

There are two encounters that you will most likely face in this level. The first is again the desire to just skip to the next level and start coding. The second encounter will be a desire to create higher fidelity prototypes. As good as high fidelity prototypes are, they are a dangerous path as they will increase your desire to start coding when you are not ready. To fight this battle, stick to quick rapid throwaway prototypes.

You can build prototypes without any code at all if you use a beginner-friendly gamedev tool like GameSalad or Construct 2. Here are a few tutorials to help you get started with those:

 

The boss for this level is completeness. When you practically have the entire game planned out and fleshed out using prototypes, you are ready to move on to the next level. You want to have a good idea of how the game will play out from start to finish so that you are not dealing with these problems while coding. Again, the less problems you have while coding, the more likely you are to finish your game.

Prototyping my first game would have involved balancing the game. This includes the combat system, how much items should be worth and how much bonus they should give the player, all the stats for both the player and the monsters, and even details such as story and quests. Again, there are a lot of details that go into making an RPG that need to be worked out before coding.

Related Posts

Level 3: Develop

Before you start the programming part, cut 90% of your intended features.
— Ian Schreiber

The third level, developing, is the most difficult level to complete. It is here that many developers lose their motivation and their desire to keep going. But fear not! With the first two levels successfully completed, you should be well on your way to finishing your game.

To begin this level, you will want to figure out what platform you want to release your game on. Will you release it for the Xbox, as a mobile app, or as a web game? After you have chosen your platform, choose a development engine or programming language that will work for this platform.

This can also be done in the reverse order, if you are comfortable with a development engine or programming language. Your platform will then be determined by the capabilities of your chosen engine or language.

To help finish this level, look for "power-ups" like free code libraries, free game assets, and free online resources. Don't try to reinvent the wheel; instead, use what is freely available to help you finish this difficult level.

'I can't draw' — use clipart. ‘I can't make sound' — Google MIDI files. ‘I can't code well' — no-one cares, you don't need to.
— Rob

The main encounter for this level will be problems and discouragement. There will be times where you encounter a problem to which you don't know how to solve. You will also become discouraged the more you work on your game as it doesn't live up to your high expectations.

To fight this encounter, you must press on! If you have to, take a few days off from your game when you get stuck. This will allow your mind to clear and fresh new ideas to enter. Usually just sleeping on the problem helps you to find a solution the next morning. Don't work yourself to death; pace yourself so that you don't become too stressed or discouraged.

If you are trying to solve a really hard problem, stop. Solve a simpler problem that accomplishes the same things.
— Daniel Cook

The boss for this level is a game. The game doesn't have to be perfect or even fully finished, but it should be something that you could release and would want people to play. Once you have that done, you are nearly finished with your game.

If I had planned and prototyped before I started coding, I could easily have done more than just a single town. I would have know exactly what to code and how to code it beforehand, making it really easy to get more things completed quicker. I wouldn't have struggled as I tried to figure out the layout to my town, deciding where to put the shops and quests, and so on. As it was, I tried to do all of this while simultaneously trying to learn how to code and make a game. Work within your limits.

Christer Kaitila has some great advice on building games quickly, thanks to his experience building one game a month:

Level 4: Release

Never give up.
— Alice Taylor

The final level of game development is release. This level is not nearly as hard as Level 3, but it is still challenging. For this level you need to get people to play your game and to give you feedback. Based on this feedback (taken with a grain of salt), make changes that you feel will make the game more fun.

 

The main encounter for this level is dealing with criticism. There will be people that just don't like your game. This is fine. Don't let those people tear you down just because they feel the need to voice their opinion. What you will need to do is learn to focus on the people that do like your game and encourage them to keep playing, asking for their help to make it better.

The point of making games isn't to see who is better at making games, it's to make what you want to make.
— Rob

How to Make Your First Game My first finished game

My first finished game.

The final boss for game development is a game that you are proud of. It doesn't have to be any good (and, honestly, as it's your first game it probably won't be), but you made it! You made a complete game from start to finish, which is not something a lot of people can say.

Every game developer will have a ‘bad' game. If not yet, at some point. All of us. Things happen.
— Brenda Romero

I may not have finished my first attempted game, but I am still proud of it to this day. It taught me a lot about game development and I was doing what I loved. Remember, success is paved by a road of failures. Don't give up!

Related Posts

Conclusion

Making your first game is an exciting and fulfilling experience. And yet, it is very common for game developers to not make it through their first game, abandoning it for another game they also may never finish.

By following these four levels of game development, you help increase your chances of finishing your first game by knowing what the road ahead looks like and knowing how to deal with them. Now go out there and make your game!

Advertisement

Related Posts

References

  µî·ÏÀÏ : 2016-12-07 [20:16] Á¶È¸ : 3620 ´Ù¿î : 0   
 
¡â ÀÌÀü±ÛJava¸¦ °ÔÀÓÀ¸·Î Á¤º¹Çϱâ Ã¥ ¿¹Á¦
¡ä ´ÙÀ½±ÛJava 2D games tutorial
°´Ã¼ÁöÇâ¾ð¾î
¹øÈ£ ¨Ï Á¦ ¸ñ À̸§ Á¶È¸ µî·ÏÀÏ
lÀÌŬ¸³½º ¼³Ä¡ (64ºñÆ® ¹öÀü)
l±â¸»°úÁ¦ Á¦¾È¹ßÇ¥ ³»¿ë
l±â¸»°úÁ¦ ÃÖÁ¾¹ßÇ¥ ³»¿ë
l±â¸»°úÁ¦ ÃÖÁ¾º¸°í¼­ ³»¿ë
13 ÀÚ¹Ù °ÔÀÓ°³¹ß °ü·Ã ÀÚ·á ¹× »çÀÌÆ® °øÁö Á¤¼ºÈÆ 436 12-07
12 ¦¦❶ Java¸¦ °ÔÀÓÀ¸·Î Á¤º¹Çϱâ Ã¥ ¿¹Á¦ ºñ°ø°³ ´äº¯ Á¤¼ºÈÆ 3 12-11
11 ¦¦❶ lHow to Make Your Own Game ´äº¯ Á¤¼ºÈÆ 3620 12-07
10 ¦¦❶ lJava 2D games tutorial ´äº¯ Á¤¼ºÈÆ 400 12-07
9 2016 °´Ã¼ÁöÇâ¾ð¾î ±â¸»°úÁ¦ Á¶Æí¼º ¹× ÁÖÁ¦ °øÁö Á¤¼ºÈÆ 1329 10-24
8 ±â¸»°úÁ¦ ÃÖÁ¾º¸°í¼­ ³»¿ë °øÁö Á¤¼ºÈÆ 1060 09-22
7 ±â¸»°úÁ¦ ÃÖÁ¾¹ßÇ¥ ³»¿ë °øÁö Á¤¼ºÈÆ 963 09-22
6 ±â¸»°úÁ¦ Á¦¾È¹ßÇ¥ ³»¿ë °øÁö Á¤¼ºÈÆ 920 09-21
5 lÀÚ¹Ù API ã¾Æº¸±â °øÁö Á¤¼ºÈÆ 488 09-12
4 l¾Èµå·ÎÀÌµå ½ºÆ©µð¿À ¼³Ä¡ °øÁö Á¤¼ºÈÆ 498 07-01
3 lÀÌŬ¸³½º ¼³Ä¡ (64ºñÆ® ¹öÀü) °øÁö Á¤¼ºÈÆ 1464 07-01
2 ¦¦❶ ÀÌŬ¸³½º ¼³Ä¡ (32ºñÆ® ¹öÀü) ´äº¯ Á¤¼ºÈÆ 598 09-12
1 ±â¸»°úÁ¦ ÁÖÁ¦ ¾ÆÀ̵ð¾î ºñ°ø°³ °øÁö Á¤¼ºÈÆ 78 04-21

[1]