www.1001TopWords.com |
Create Computer Games - Get Started on Creating Your Own Virtual Worlds
I've always loved video games, ever since I first played them on a friend's computer in the afternoon after elementary school. There's something almost magical about the fact that we can move images around and interact with virtual worlds, a living fantasy presented for us to interact with however we please. I've also always wanted to make games myself but, until recently, didn't have the technical knowledge to do so. Now, I'm a second year software engineering student, so if I weren't able to code a game without too many dramas there'd be something drastically wrong. But what about the common person: the person for whom the term 'memory leak' conjures up images of their grandfather, 'pipeline' is where the water flows, and 'blitting' is unheard of? Well, everyone can get in on the game creation process, and you don't even need to learn 'real' programming to do so. So where do games start? With an idea. Games, like all fiction, require an idea to be successful. Sure, in the same way you can just sit down and write a story without foresight, you can jump on in and slap a game together. However, unless you get ridiculously lucky, the best works are usually the ones that have been well thought out beforehand. There are two methods of planning a project. You can start from a known technological standpoint and build your project on top of that or you can just go for the design, add as many features and ideas as you like, and then remove the ones that you can't use when you've decided on the technology you're going to implement the game with. In general, the second type is probably the best one to go with when designing games. When you're first starting out however, the first option will save you many headaches. So, for a first game you're going to want a pretty simple idea. Don't get me wrong, crazy-go-nuts game ideas are fantastic, and there should be more of them out there, but you're not going to be able to create a real world simulator with fifty billion virtual people all interacting real time with your actions having a butterfly effect on the future of the virtual universe when it's just your first game. Really. Many people try it; none that I know of have succeeded. Imitation is the best way to start out. Simple games such as 'Space Invaders', 'Tetris', 'Pacman' or even 'Pong' are great places to start. All are largely simple to create but have some inherent challenges. 'Pacman' for example, requires path finding for the ghosts. I recommend that you start even simpler than that for your very first attempt. 'Space Invaders' is a nice point to jump in. You can make a simple, complete game without much effort and it's almost infinitely extensible. If you're stuck for an idea, pick a genre that you enjoy. Do you love adventure games such as 'Monkey Island', 'Grim Fandango', 'Space Quest', 'King's Quest' etc.? Design one of those. Are you into fighting games like 'Street Fighter', 'Tekken', 'Soul Calibur', 'Mortal Kombat' and so on? Come up with an idea for that. Do you like first person shooters such as 'Quake', 'Half Life' or 'Doom'? I don't recommend it as a first project, but you can always give it a go. Feel free to be as generic as you like, this is a learning experience after all. Now that you have your idea it's time to flesh it out. Don't worry about the technology or the fact that you may not know how to actually implement a game just yet, just grab yourself some paper and a pencil and go crazy with ideas. Describe the main characters, game play, goals, interactions, story, and key mappings, anything you can think of. Make sure you have enough detail so that someone can read through the notes and play through the game in their head with relative accuracy. Changing game design during the coding process is almost always a bad idea. Once it's set, it should remain set until the tweaking phase (I'll go into this more later) or you're likely to enter 'development hell', where the project goes on and on; more and more work is done with less and less outcome. At the end of this period of your game creation, you should have the following: - A written outline of the game's characters and possibly a sketch or two (be they space ships, yellow circles, cars or the prince of the dark kingdom of Falgour, you need to know who or what the player will be and who they will compete against) - A written outline of the story (if there is one, this isn't too vital for 'Space Invaders' or 'Tetris', but for 'Uber Quest: An Adventure of Awesomeness' it's a really good idea) - A description of game play, written or storyboarded. Storyboards are visual representations of ideas. Draw your characters in actions, with arrows showing the flow of action and short written descriptions detailing the events occurring in your image (because some of us aren't fantastic artists and our images can be a little? open to interpretation?) Now that you have a fleshed out idea, it's time to work out how this will all get put together. If you've gotten to this point and are worried that you're going to have to spend years learning complex programming languages in order to implement your idea, fear not! Others have already done the hard yards for you. There are many RAD (Rapid Application Development) Tools available for game creation, a number of which are available for free online. Some of them still require you to learn a 'scripting language' (a simplified programming language made for a specific task) but in general this isn't too complicated or involved. I've compiled a brief list of some of these I have found at the end of the article. The free ones are listed first, organized by game genre. Well, that should be enough to get you started in the creation of your game. The most important thing to remember once you've gotten this far is that you need to complete your game. Many people start a project and then lose interest and it fails, or they keep moving on to one new project after another without finishing anything. Start small, build a working (if simple) game that is, above all else, complete. When you get to this stage you will always have a huge number of things that you wish to change, fix etc. but you'll get a great feeling from knowing that it is, in its way, finished. From this point, you can start the tweaking phase. Play your game a few times and ask others to do the same. Take note of what isn't fun or could be better and change things here. At this stage, it is more important than ever to keep backups of previous versions so that if a change doesn't work you can go back and try something different without losing any of your work. It is at this point that you can add all new features, improve graphics and sounds, whatever you please, safe in the knowledge that you're working on a solid foundation. When you're happy with your game, why not share it with the world? There are many cheap or free places out there for you to host your files on and then you can jump on link lists and forums and let everyone know about your creation. Well, I hope that this has been a helpful introduction into the art of creating games. It's a great deal of fun, and can open whole new avenues of creative expression for you to explore. Jump in and have fun! Links: General Game Creation:(Tools that allow easy creation of many different game types)Game Maker: http://www.gamemaker.nlMegaZeux: http://megazeux.sourceforge.net/ Adventure Games:(Games such as Monkey Island, King's Quest, Space Quest etc.)Adventure Game Studio: http://www.bigbluecup.comAGAST: http://www.allitis.com/agast/3D Adventure Studio: http://3das.noeska.com/ADRIFT (for text adventures): http://www.adrift.org.uk/ Role Playing Games (RPGs):(Games such as Final Fantasy, Breath of Fire, Diablo)OHRPG: http://www.hamsterrepublic.com/ohrrpgce/RPG Toolit: http://www.toolkitzone.com/ Fighting Games:(Games such as Street Fighter, Mortal Kombat, Tekken, Soul Calibur etc.)KOF91: http://sourceforge.net/projects/kof91/MUGEN (unfortunately the site is largely in French): http://www.streetmugen.com/mugen-us.html Side-Scrolling Games:(Games such as the 2D Mario Games, Sonic the Hedgehog, Double Dragon etc.)The Scrolling Game Development Kit: http://gamedev.sourceforge.net/ There are many others available as well. One particularly useful site for finding game creation tools is: http://www.ambrosine.com/resource.html Also of note, although not freeware, are the excellent game creation tools available by Clickteam at: http://www.clickteam.com/English/Klik and Play and The Games Factory in particular are the programs to have a look at and download the free demos of. If you really want to do things right and program the game yourself, there are some excellent programming resources available at the following locations: Java Game Programming:http://fivedots.coe.psu.ac.th/~ad/jg/http://www.gamedev.net/reference/articles/article1262.asphttp://javaboutique.internet.com/tutorials/Java_Game_Programming/ Visual Basic Game Programming:http://markbutler.8m.com/vb-tutorial.htm C++ Game Programming:http://www3.telus.net/alexander_russell/course_dx/introduction_dx.htmhttp://www.rit.edu/~jpw9607/tutorial.htm General Information:http://www.gamedev.net/http://www.gamasutra.com/ Daniel PunchM6.Nethttp://www.m6.netDaniel Punch is a university student learning how to make a living through having fun.
|
RELATED ARTICLES
Improving Spelling with Games You got it! You can do just about any type of learning for a child or an individual learning a second language through the use of various computer games. You are sure to find something that will fit with their needs. You are also able to find a game that will keep them interested. Let's take spelling as an example. Zuma Deluxe Style Games Evolution As I think most of gamers who play in shareware games know game called Zuma Deluxe. This game was extremly popular some time ago and still popular now. It's now a classic game! Theories Behind Magic Trinkets in Video Game and Virtual Reality In Gaming we deal between Simulation, Augmented Reality, Fantasy and Virtual Reality. The best fantasy has some reality basis behind it. Trun your mind on for a second and let me explain. UAV; Hunter II and RQ-1A Predator UAVs Needs Additional Modifications Since the Predator has inverted "V" shaped stabilizers these stabilizers should contain wheel pants and wheels underneath to lessen weight and save costs in manufacturing, we need to bring down the costs of these units. Less mechanism will save weight and we can use that savings in weight for increased payload or more fuel to extend loitering time. I propose the rear Landing gear incorporated into this V-Tail assembly. Let's move Murphy out of these aircraft and keep it simple, cheap to build and efficient. PC Gaming Video: Meeting the Demands If you have an interest in playing PC games that were made at least in the past couple of years, you've probably seen the serious video demands these games now have. It's not only that you need a fast system that can handle all of the information in today's games, but you need a major performance video card to handle computer game video too. Next Generation Games Consoles - Separating Fact from Fiction Over the next 18 months the 3 giants of the Games Console world will be battling it out in stores and homes across Europe, America and Asia for the title of the world greatest Games Console. The stakes are high in this multi billion dollar business, not just for the console sales but for the games sales that go along side it. Since the launch announcements of all 3 consoles in May at the E3 conference in LA. The 3 combatants have been vying for the millions of column inches that have been written about the Next Generation Consoles. Each Press release has been hotly followed by another press release from a rival company so much so that extracting the facts from all the hype has been nearly impossible. At the launch press conferences Microsoft boasted that the Xbox 360 could do 9-billion-dot-product-operations per second. Sony then came out and said that the PS3 could do 51-billion-dot-product-operations per second however Sony had combined the CPU and GPU performance numbers whilst Microsoft only reported its CPU performance number. When the consumer is up against this sort of publicity blizzard it is best not to believe a thing until you can check the facts for yourself.So what do we know?Well for the Xbox 360 and the Sony Playstation 3 we have lots of lists of hardware and specifications which actually don't mean very much in isolation. The main thing that need concern us are the processor speeds and they are both stated as being 3.2 GHz The only time that the hardware will mean anything is when we get to run them side by side and then if experience is anything to go by the difference in real life performance won't be noticeable and will just be used by the press departments to battle it out.Despite all the press releases and information that has been spewing out of the headquarters of Microsoft, Sony and Nintendo we actually know very few facts.We know that in all likelihood the Xbox 360 will be on the shelves in time for Christmas, Amazon are currently taking pre-delivery orders and are quoting a release date of November 28th. The prices have been set at $299 for the Core System and $399 for the Xbox 360, the difference being that the Core system doesn't have the external hard drive required to save games and download new content or the headset required to play online on Xbox Live! Why 2 prices? and why a version that hasn't got everything included? This looks very much like a product of the marketing department trying to get a product at the historically important sub $300 level more than anything and this may backfire on them in the long run. Next to hit the Shelves will be Sony's Playstation 3 supposedly in spring next year once again we have very few facts to go on, Sony are continually releasing press releases and mentioning in public that the price will be high and the figure of $500 has been mentioned but many industry experts suspect that this is a ploy so that when they release it at $300 or $350 it will look like a bargain. The final console to hit the shelves will be the Nintendo Revolution some time late in 2006 and 2007. Since the "launch" at E3 this year very little has been said about it by Nintendo. It seems at this time the "Launch" was just a way to deflect some of the publicity away from Microsoft and Sony.One fact is certain, If Microsoft do get the Xbox 360 onto the shelves before Christmas it will be this year's biggest selling Christmas gift. So until you get your hands on one of the consoles?.Question everything! RPG: Table and Computer It's not a secret that table RPG games are not so popular as they used to be. However a certain number of amateurs are still fond of them. What is so particular about a pasteboard box or a book with rules? It seems that all the advantages have their " younger computer brothers": no manual calculations, no bricks ( the number of which is from one to almost 20). In general, no additional efforts are needed- just relax, play and don't worry. But nothing of the kind- groups of maniacs with burning eyes run to the special shop( if there is any), buy another book, and having met in some dark place in the evening, start to crunch with pens and tinkle the dice. Are You A PC Gamer And Want The Best Out Of Your Graphics Card? Introduction $20 Buys a Lot of Game These Days Watching the evolution of sports games has been like watching a retarded child grow up to become a handsome and brilliant Master of the Universe. Now I'm not saying ESPN's NBA 2K5 is the pinnacle of sports gaming, but I will tell you why it comes pretty damn close ? especially for all of us basketball fanatics. Before I go on, let us talk a little bit about the "Corky" Thatcher friendly games of the past. Flying an MAV Through Fan Blades to Attain Target Flying an MAV Through Rotating Fan Blades ? It maybe possible to write into the software code of a MAVs Optic Flow Sensor Network an algorithm, which would allow it to fly though a rotating set of fan blades. Now then as difficult as this may sound the idea might not be as complicated as you think. Why is this important? Well you might have to fly the MAV through a giant set of cooling fans or a giant air duct as we often see James Bond try to get through. Sega Dreamcasts Cause of Death? What ever happened to that game console we used to call the Sega Dreamcast? Why did it suddenly disappear after 2 years of production? Was the government involved in brainwashing our minds like in George Orwell's 1984? All these questions will be answered as I investigate the Dreamcast's devastating decline. The Story Behind OpenSimcity I've always liked to play SimCity since I was little. I used to play the version for Super Nintendo for hours then and then. That version was really cool. It had 4 seasons (winter, spring, summer and autumn) and many landscapes, scenarios to choose between. That was a really big hit at the time. It was clearly the most popular videogame. Review: Samurai Jack -- Code of the Samurai Fans of Genndy Tartakovsky's "Samurai Jack," which wrapped last year on the Cartoon Network, enjoy the quirky storytelling and stunning visuals, also the martial arts sequences. Naturally, it was only a matter of time before the online gaming industry turned the time-traveling samurai's adventures into video games. Xbox vs. PS2 Game Consoles There has been a great deal of discussion regarding the two most popular gaming consoles currently on the market: Playstation 2 (PS2) and Xbox. PS2 is a Sony product, while Xbox is owned by the software giant Microsoft. Many different people have worked with these gaming systems inside and out, attempting to determine which system provides the best performance for your hard-earned gaming dollar. Here we take a look at each gaming system and compare the specs and performance of each. We will attempt to answer that age-old question: which is the better gaming system, Xbox or PS2? Rent Games Online for the Kids It's risky business allowing your children to play games online. I know that may sound funny but I have a good argument to back up my opinion. If you continue reading I will share it with you. New Helicopter Design for Your Video War Games Using Underbelly Cone with Slots Facing Up On a Helicopter to Increase Payload and Liftoff Force. Picture a helicopter model sitting on top of a funnel. The edges of the bottom of the funnel on the table has an additional lip on it which raps around the edges with a little space between it. At the rotor blades force air under the helicopter into the ground cushion below they are forces into the inside of the cone. As the pressure build under it, it forces all that energy to the helicopters C.G. (Center of gravity). This continues as the helicopter lifts up. Codename Revolution - Nintendos Next Generation Gaming System Over the past year or so plenty of hype, mystery and controversy has been raised over the new Nintendo Console. Systems like the Xbox have taken the lead in gaming with offering capabilities such as online multiplayer. When Nintendo showed off their new system at the E3 Expo they showed gamers that they truly intend to revolutionize the video game community once again. But until Nintendo "officially" gives us the details, we can only speculate and wait. Increasing Rates of Climb in Fighter Aircraft Like the New Joint force Strike Fighter We know from studying aircraft like the F-8 Crusader, in which my dad had the fortunate to fly while in the US Navy stationed in Puerto Rico, that when the wind was tilted upward on the aircraft that it had a lower takeoff speed and much higher initial rates of climb. At which point the wing came back to position and it was a pencil shaped rocket with wings. Now then let us take the newest discoveries in wind tunnels about life, weight, thrust and drag. We know that the reletive wind pushing on the bottom of the wings forces the aircraft up. Blast From The Past - Retro Games Are Hot Again Miss the brainlessly simple and extremely addictive games from the 80s? Find out which game developers feel the same. Dozens of teams are creating new games based on the old classics. Here are just a few of them. Popular Electronic Games - They Are Not Just For Kids Anymore Superheroes battle monsters and space invaders in fast action games. Players take on the role of these superheroes in epic battles. In other games players race cars, boats, motorcycles, helicopters and planes against villains and even less evil opponents to win high stakes races. |
© Athifea Distribution LLC - 2013 |