Space Invaders Team Lab Assignment Specification (V

Total Page:16

File Type:pdf, Size:1020Kb

Space Invaders Team Lab Assignment Specification (V Space Invaders Team Lab Assignment Specification (v. 0.3.0) Abstract In this lab, you will be working with two or three of your peers to develop an object-oriented implementation of the classic arcade game Space Invaders in Java. This will involve developing several Java classes within a complex inheritance hierarchy (“complex” here does not mean hard, just non-linear), using these classes and objects created from these classes to realize the eventual game-play, and using provided libraries to render the game and interact with the user. This lab introduces a few new concepts in object-oriented design and inheritance and seeks to reinforce concepts that you have already learned. 1. Description of game-play The game you will be implementing is an abbreviated adaptation of the arcade game Space Invaders. This game is a single-player, multi-level shooting game that takes place within a finite two-dimensional space. The player operates a tank, whose movement is confined along the x-axis and which is located at the bottom of the playing space. The player controls the tank using the left arrow key, which moves the tank to the left, the right arrow key, which moves the tank to the right, and the space key, which fires the tank's cannon, propelling a missile vertically upward at a constant velocity. The tank must observe an implementation-specific firing rate throttle. That is, a tank may fire, for example, only once per second. Any attempts to fire during this one second period must fail to cause the tank to fire, but must not reset the count. The player's objective is to destroy the invaders, which descend from the top of the screen. The invaders are formed into rows and columns and move at the exact speed in the exact same direction. They begin by moving either to the left or to the right. Once one invader reaches the boundary of the playing space, all invaders simultaneously descend and then begin to move in the opposite direction, again all at the exact same rate. This pattern repeats until either all invaders are destroyed or one or more reaches the bottom of the playing space, at which point the tank is destroyed. The invaders fire missiles at random. These missiles travel vertically downward. When an invader is struck by a missile fired by the tank, it is destroyed and removed from the playing space. When the tank is struck by a missile fired by an invader, the tank is destroyed. If the player has remaining lives, then a new tank is inserted into the playing space at the exact place where the tank was previously destroyed, the player's number of lives is decremented by one, and the game-play continues. If the invaders reach the bottom of the playing space, then the tank is destroyed, and similarly, if the player has additional lives, his tank is replaced and his lives are decremented. However, in the case where the invaders have reached the bottom of the playing space, the invaders must then move some distance upward after a new tank is inserted, and they then continue along their former course—traveling to the side, and dropping down and reversing direction when they reach a boundary. An invader struck by a missile fired by another invader is not destroyed. Instead, the missile is removed from the playing space, but the invader remains. As invaders are destroyed, they gradually increase their speed. The exact rate of increase in speed is implementation-specific. (My implementation fits the speed of the invaders to a logarithm of the number of invaders multiplied by some factor.) Once there is only one invader remaining, it not only travels faster than it did when there were two, but it also begins firing much, much more rapidly. Again, the exact change in firing frequency is implementation-specific. Once all invaders have been destroyed, the level is considered completed. The player's life count is incremented by one, and the tank's position is reset to the middle of the screen. Then, a new, more difficult wave of invaders forms and again begins its advance. There should be a minimum of three levels, each somehow more difficult than the previous. Each time an invader is destroyed, the player's score is incremented by ten. At the completion of a level, the player's score is incremented by 100 multiplied by the level number. That is, at the completion of level one, the player receives 100 points; at the completion of level two, the player receives 200 points; etc. Each time the player fires his cannon, his score is decremented by one. The player's score, number of lives, and the level number are displayed at the bottom of the screen. Once all levels are complete, the text “WINNER!” is displayed. In the event that the player loses all his/her lives, the text “GAME OVER” is displayed. 3. Provided library The code I have provided to you will handle the user front-end of the game, as well as much of the back-end processing and book-keeping. The primary class you will be working with is “SpaceInvadersWorld”. This class represents a virtual Space Invaders universe that can be used to keep track of the various entities in the game, update them at a certain interval, render and display the entities to the user, and handle user input via the keyboard. This class interacts with your code via three provided interfaces: ISpaceInvadersEntity, ISpaceInvadersText, and IGameController. To use this class in conjunction with the code you will be writing, you will first need to create an instance of the class using its default constructor and then call the method “launchGame”. The “launchGame” method displays the GUI and starts the update process (which calls updatePosition on the entities it contains at a certain interval). If a GameController has been set for the instance, it will call the start method on this controller, to ask it to begin the game—that is, the GameController will obtain control of the program execution to add entities to the SpaceInvadersWorld and then return control to the world. Entities, such as an Invader, a Tank, or a Missile, can be added to this world via the “addEntity” method. They can similarly be removed, such as when the entity is destroyed or when the level is completed, using the “removeEntity” method. After an entity is added to the world, and before it is removed, it will be rendered using its “getX()”, “getY()”, and “getImage()” methods, and at a certain interval its “updatePosition” method will be called by the update process. Text objects can be added and removed to the world using the “addText” and “removeText” methods, respectively. When an ISpaceInvadersText object is added to the world, it will also be rendered in the display using its various methods. An example usage of this class without a GameController is as follows: // Create the world. SpaceInvadersWorld world = new SpaceInvadersWorld(); // Add a “Hello!” label at 100, 100 world.addText ( new SpaceInvadersText ( 100, 100, “Hello!” ) ); // Add a Tank to the display centered and at Y = 450. world.setPlayerEntity ( new Tank ( world.getWidth() / 2, 450 ) ); // Launch the display world.launchGame(); This example assumes that you have fully written the Tank and SpaceInvadersText classes such that they implement ISpaceInvadersEntity and ISpaceInvadersText, respectively, and that they have constructors that take the provided arguments. Once a GameController class has been created, you can then use the world in the following fashion: SpaceInvadersWorld world = new SpaceInvadersWorld(); world.setController ( new GameController() ); world.launchGame(); If your GameController class implements IGameController and provides the following implementation of the “start” method, this usage will be equivalent to the previous example. public void start() { this.getWorld().addText ( new SpaceInvadersText ( 100, 100, “Hello!” ); this.getWorld().setPlayerEntity ( new Tank ( world.getWidth() / 2, 450 ) ); } 4. Inheritance hierarchies 4.1. SpaceInvadersText You must create a class named SpaceInvadersText that implements the provided interface ISpaceInvadersText. A SpaceInvadersText object is essentially a text label that can be rendered at a certain position, with a given font, color, horizontal alignment, and vertical alignment in the game display. It should be possible to create a new SpaceInvadersText object for any string, with any position, font, color, horizontal alignment, and vertical alignment. How you choose to implement this behavior is up to you to decide—you may simply pack all of these parameters into a constructor, use delegate setter methods, or some combination of the two. The only requirement is that whatever values for these parameters are set by the user must be returned by their equivalent getter methods as specified in the ISpaceInvadersText interface. 4.2. AbstractSpaceInvadersEntity You must create an abstract base class that implements the interface ISpaceInvadersEntity. This base class should provide concrete implementations of all the methods defined in the interface, except for getWidth(), getHeight(), and getImage(), which should be left abstract for extending classes to implement. The abstract class should provide a constructor taking two arguments—an initial X and Y position, which should be stored in the instance and returned by subsequent calls on getX() and getY(). The abstract class should provide full implementations of all setter methods, such as “setXSpeed” and “setYSpeed,” by storing the values passed to these methods and returning them on subsequent calls to their corresponding getter methods, e.g. “getXSpeed” and “getYSpeed.” The abstract class should provide a default implementation of “updatePosition” that increments the entity's X-coordinate by its X-speed and its Y-coordinate by its Y-speed. After updating its position, it should check if the entity is “out-of-bounds” by using the method “getWorld().outOfBounds(...)”.
Recommended publications
  • Taito Pinball Tables Volume 1 User Manual
    TAITO PINBALL TABLES VOLUME 1 USER MANUAL For all Legends Arcade Family Devices © TAITO CORPORATION 1978, 1982, 1986, 1987 ALL RIGHTS RESERVED. Version 1.7 | September 1, 2021 Contents Overview ............................................................................................................1 DARIUS™ .............................................................................................................2 Description .......................................................................................................2 Rollovers ..........................................................................................................2 Specials ...........................................................................................................2 Standup Targets ................................................................................................. 2 Extra Ball .........................................................................................................2 Hole Score ........................................................................................................2 FRONT LINE™ ........................................................................................................3 Description .......................................................................................................3 50,000 Points Reward ...........................................................................................3 O-R-B-I-T Lamps ................................................................................................
    [Show full text]
  • Rétro Gaming
    ATARI - CONSOLE RETRO FLASHBACK 8 GOLD ACTIVISION – 130 JEUX Faites ressurgir vos meilleurs souvenirs ! Avec 130 classiques du jeu vidéo dont 39 jeux Activision, cette Atari Flashback 8 Gold édition Activision saura vous rappeler aux bons souvenirs du rétro-gaming. Avec les manettes sans fils ou vos anciennes manettes classiques Atari, vous n’avez qu’à brancher la console à votre télévision et vous voilà prêts pour l’action ! CARACTÉRISTIQUES : • 130 jeux classiques incluant les meilleurs hits de la console Atari 2600 et 39 titres Activision • Plug & Play • Inclut deux manettes sans fil 2.4G • Fonctions Sauvegarde, Reprise, Rembobinage • Sortie HD 720p • Port HDMI • Ecran FULL HD Inclut les jeux cultes : • Space Invaders • Centipede • Millipede • Pitfall! • River Raid • Kaboom! • Spider Fighter LISTE DES JEUX INCLUS LISTE DES JEUX ACTIVISION REF Adventure Black Jack Football Radar Lock Stellar Track™ Video Chess Beamrider Laser Blast Asteroids® Bowling Frog Pond Realsports® Baseball Street Racer Video Pinball Boxing Megamania JVCRETR0124 Centipede ® Breakout® Frogs and Flies Realsports® Basketball Submarine Commander Warlords® Bridge Oink! Kaboom! Canyon Bomber™ Fun with Numbers Realsports® Soccer Super Baseball Yars’ Return Checkers Pitfall! Missile Command® Championship Golf Realsports® Volleyball Super Breakout® Chopper Command Plaque Attack Pitfall! Soccer™ Gravitar® Return to Haunted Save Mary Cosmic Commuter Pressure Cooker EAN River Raid Circus Atari™ Hangman House Super Challenge™ Football Crackpots Private Eye Yars’ Revenge® Combat®
    [Show full text]
  • Knowledge Transfer for Deep Reinforcement Learning with Hierarchical Experience Replay
    Proceedings of the Thirty-First AAAI Conference on Artificial Intelligence (AAAI-17) Knowledge Transfer for Deep Reinforcement Learning with Hierarchical Experience Replay Haiyan Yin, Sinno Jialin Pan School of Computer Science and Engineering Nanyang Technological University, Singapore {haiyanyin, sinnopan}@ntu.edu.sg Abstract To tackle the stated issue, model compression and multi- task learning techniques have been integrated into deep re- The process for transferring knowledge of multiple reinforce- inforcement learning. The approach that utilizes distillation ment learning policies into a single multi-task policy via dis- technique to conduct knowledge transfer for multi-task rein- tillation technique is known as policy distillation. When pol- forcement learning is referred to as policy distillation (Rusu icy distillation is under a deep reinforcement learning setting, due to the giant parameter size and the huge state space for et al. 2016). The goal is to train a single policy network each task domain, it requires extensive computational efforts that can be used for multiple tasks at the same time. In to train the multi-task policy network. In this paper, we pro- general, it can be considered as a transfer learning process pose a new policy distillation architecture for deep reinforce- with a student-teacher architecture. The knowledge is firstly ment learning, where we assume that each task uses its task- learned in each single problem domain as teacher policies, specific high-level convolutional features as the inputs to the and then it is transferred to a multi-task policy that is known multi-task policy network. Furthermore, we propose a new as student policy.
    [Show full text]
  • Learning Robust Helpful Behaviors in Two-Player Cooperative Atari Environments
    Learning Robust Helpful Behaviors in Two-Player Cooperative Atari Environments Paul Tylkin Goran Radanovic David C. Parkes Harvard University MPI-SWS∗ Harvard University [email protected] [email protected] [email protected] Abstract We initiate the study of helpful behavior in the setting of two-player Atari games, suitably modified to provide cooperative incentives. Our main interest is to understand whether reinforcement learning can be used to achieve robust, helpful behavior— where one agent is trained to help a second, partner agent. Robustness requires the helpful AI to be able to cooperate effectively with a diverse set of partners. We study this question with both artificial partner agents as well as human participants (introducing a new, web-based framework for the study of human-with-AI behavior). We achieve positive results in both Space Invaders and Fall Down, as well as successful transfer to human partners, including with people who are asked to deliberately follow unexpected behaviors. 1 Introduction As we anticipate a future of systems of AIs, interacting in ever-increasing ways and with each other as well as with people, it is important to develop methods to promote cooperation. This need for cooperation is relevant, for example, in settings with automated vehicles [1], home robotics [14], as well as in military domains, where UAVs assist teams of soldiers [31]. In this paper, we seek to advance the study of cooperative behavior through suitably modified, two-player Atari games. Although closed and relatively simple environments, there is a rich, recent tradition of using Atari to drive advances in AI [23, 24].
    [Show full text]
  • A Strongly Typed GP-Based Video Game Player
    A Strongly Typed GP-based Video Game Player Baozhu Jia Marc Ebner Ernst-Moritz-Arndt Universitat¨ Greifswald Ernst-Moritz-Arndt Universitat¨ Greifswald Institut fur¨ Mathematik und Informatik Institut fur¨ Mathematik und Informatik Walther-Rathenau-Strae 47, 17487 Greifswald, Germany Walther-Rathenau-Strae 47, 17487 Greifswald, Germany Email: [email protected] Email: [email protected] Abstract—This paper attempts to evolve a general video game games lies in between classic board games and modern 3D player, i.e. an agent which is able to learn to play many different games. video games with little domain knowledge. Our project uses strongly typed genetic programming as a learning algorithm. Section II briefly summarises previous works on general Three simple hand-crafted features are chosen to represent the game players. Section III describes how we compute feature game state. Each feature is a vector which consists of the position vectors from screen grabs. Section IV presents three different and orientation of each game object that is visible on the screen. representations of the game state. Section V demonstrates These feature vectors are handed to the learning algorithm which how the game player is evolved using strongly typed genetic will output the action the game player will take next. Game programming. The conclusions are given in the final section. knowledge and feature vectors are acquired by processing screen grabs from the game. Three different video games are used to test the algorithm. Experiments show that our algorithm is able II. RELATED WORK to find solutions to play all these three games efficiently.
    [Show full text]
  • Classic Gaming Expo 2005 !! ! Wow
    San Francisco, California August 20-21, 2005 $5.00 Welcome to Classic Gaming Expo 2005 !! ! Wow .... eight years! It's truly amazing to think that we 've been doing this show, and trying to come up with a fresh introduction for this program, for eight years now. Many things have changed over the years - not the least of which has been ourselves. Eight years ago John was a cable splicer for the New York phone company, which was then called NYNEX, and was happily and peacefully married to his wife Beverly who had no idea what she was in for over the next eight years. Today, John's still married to Beverly though not quite as peacefully with the addition of two sons to his family. He's also in a supervisory position with Verizon - the new New York phone company. At the time of our first show, Sean was seven years into a thirteen-year stint with a convenience store he owned in Chicago. He was married to Melissa and they had two daughters. Eight years later, Sean has sold the convenience store and opened a videogame store - something of a life-long dream (or was that a nightmare?) Sean 's family has doubled in size and now consists of fou r daughters. Joe and Liz have probably had the fewest changes in their lives over the years but that's about to change . Joe has been working for a firm that manages and maintains database software for pharmaceutical companies for the past twenty-some years. While there haven 't been any additions to their family, Joe is about to leave his job and pursue his dream of owning his own business - and what would be more appropriate than a videogame store for someone who's life has been devoted to collecting both the games themselves and information about them for at least as many years? Despite these changes in our lives we once again find ourselves gathering to pay tribute to an industry for which our admiration will never change .
    [Show full text]
  • Colecovision
    ColecoVision Last Updated on September 30, 2021 Title Publisher Qty Box Man Comments 1942 Team Pixelboy 2010: The Graphic Action Game Coleco A.E. CollectorVision Activision Decathlon, The Activision Alcazar: The Forgotten Fortress Telegames Alphabet Zoo Spinnaker Amazing Bumpman Telegames Antarctic Adventure Coleco Aquattack Interphase Armageddon CollectorVision Artillery Duel Xonox Artillery Duel / Chuck Norris Superkicks Xonox Astro Invader AtariAge B.C.'s Quest for Tires Sierra B.C.'s Quest for Tires: White Label Sierra B.C.'s Quest for Tires: Upside-Down Label Sierra B.C.'s Quest for Tires II: Grog's Revenge Coleco Bank Panic Team Pixelboy Bankruptcy Builder Team Pixelboy Beamrider Activision Blockade Runner Interphase Bomb 'N Blast CollectorVision Bomber King Team Pixelboy Bosconian Opcode Games Boulder Dash Telegames Brain Strainers Coleco Buck Rogers Super Game Team Pixelboy Buck Rogers: Planet of Zoom Coleco Bump 'n' Jump Coleco Burgertime Coleco Burgertime: Telegames Rerelease Telegames Burn Rubber CollectorVision Cabbage Patch Kids: Picture Show Coleco Cabbage Patch Kids: Adventures in the Park Coleco Campaign '84 Sunrise Carnival Coleco Cat Scheduled Oil Sampling Game, The Caterpillar Centipede Atarisoft Chack'n Pop CollectorVision Children of the Night Team Pixelboy Choplifter Coleco Choplifter: Telegames Rerelease Telegames Chuck Norris Superkicks Xonox Circus Charlie Team Pixelboy Congo Bongo Coleco Cosmic Avenger Coleco Cosmic Crisis Telegames Cosmo Fighter 2 Red Bullet Software Cosmo Fighter 3 Red Bullet Software CVDRUM E-Mancanics Dam Busters Coleco Dance Fantasy Fisher Price Defender Atarisoft Deflektor Kollection AtariAge This checklist is generated using RF Generation's Database This checklist is updated daily, and it's completeness is dependent on the completeness of the database.
    [Show full text]
  • Deep Reinforcement Learning to Play Space Invaders
    Deep Reinforcement Learning to play Space Invaders Nihit Desai∗ Abhimanyu Banerjee∗ Stanford University Stanford University Abstract In this project, we explore algorithms that use reinforcement learning to play the game space in- vaders. The Q-Learning algorithm for reinforcement learning is modified to work on states that are extremely high dimensional(images) using a convolutional neural network and is called the Deep-Q learning algorithm. We also experiment with training on states represented by the RAM representa- tion of the state. We also look at an extension of Q-learning known as Double Q learning, explore optimal architectures for learning . 1 Introduction Video games provide an ideal testbed for artificial intelligence methods and algorithms. In particular, programming intelligent agents that learn how to play a game with human-level skills is a difficult and challenging task. Rein- forcement learning (Sutton and Barto 1998) has been widely used to solve this problem traditionally. The goal of reinforcement learning is to learn good policies for sequential decision problems by maximizing a cumulative future reward. The reinforcement learning agent must learn an optimal policy for the problem, without being explicitly told if its actions are good or bad. Reinforcement learning approaches rely on features created manually by using domain knowledge (e.g. the re- searcher might study game playing patterns of an expert gamer and see which actions lead to the player winning the game, and then construct features from these insights). However, the current deep learning revolution has made it possible to learn feature representations from high-dimensional raw input data such as images and videos, leading to breakthroughs in computer vision tasks such as recognition and segmentation (Kaiming He et al.
    [Show full text]
  • The Mechanics of Survivance in Indigenously-Determined Video-Games: Invaders and Never Alone
    Transmotion Vol 3, No 2 (2017) The Mechanics of Survivance in Indigenously-Determined Video-Games: Invaders and Never Alone DEBORAH L. MADSEN Survivance as a legal concept names the right to inheritance and more specifically the condition of being qualified to inherit a legacy. In his essay “Aesthetics of Survivance” (2008), Vizenor describes survivance as “the heritable right of succession or reversion of an estate” (1). This aspect of survivance is overlooked by those scholars of Vizenor’s work who focus rather on the conjunction of the terms “survival” and “resistance,” terms that are important most fundamentally as they intersect with the capacity to transmit and to accept the inheritance of the past that is itself the intersection of survival and resistance.1 That is to say, acts of resistance and survival form the axiology (or ethical action) of survivance; the preservation of tribal languages, for example, or the transmission of traditional stories, are acts that ensure the continual availability of the tribal values of knowing and being in the world that are encoded in those words and stories. These Indigenous lifeways constitute the inheritance that motivates survivance. Thus, survivance is not a static object or method but a dynamic, active condition of historical and cultural survival and also of political resistance, practiced in the continual readiness of Indigenous communities to accept and continue the inheritance passed on by elders and ancestors. In this sense, claims made by recent Indigenous video-game developers to speak to youth through digital media by creating games that transmit tribal legacies of language, stories, ontologies, and ways of knowing and being in the world, speak to the practice of survivance.
    [Show full text]
  • HOW to PLAY with MAPS by Ross Thorn Department of Geography, UW-Madison a Thesis Submitted in Partial Fulfillment of the Require
    HOW TO PLAY WITH MAPS by Ross Thorn Department of Geography, UW-Madison A thesis submitted in partial fulfillment of the requirements for the degree of Master of Science (Geographic Information Science and Cartography) at the UNIVERSITY OF WISCONSIN–MADISON 2018 i Acknowledgments I have so many people to thank for helping me through the process of creating this thesis and my personal development throughout my time at UW-Madison. First, I would like to thank my advisor Rob Roth for supporting this seemingly crazy project and working with me despite his limited knowledge about games released after 1998. Your words of encouragement and excitement for this project were invaluable to keep this project moving. I also want to thank my ‘second advisor’ Ian Muehlenhaus for not only offering expert guidance in cartography, but also your addictive passion for games and their connection to maps. You provided endless inspiration and this research would not have been possible without your support and enthusiasm. I would like to thank Leanne Abraham and Alicia Iverson for reveling and commiserating with me through the ups and downs of grad school. You both are incredibly inspirational to me and I look forward to seeing the amazing things that you will undoubtedly accomplish in life. I would also like to thank Meghan Kelly, Nick Lally, Daniel Huffman, and Tanya Buckingham for creating a supportive and fun atmosphere in the Cartography Lab. I could not have succeeded without your encouragement and reminder that we all deserve to be here even if we feel inadequate. You made my academic experience unforgettable and I love you all.
    [Show full text]
  • Full Arcade List OVER 2700 ARCADE CLASSICS 1
    Full Arcade List OVER 2700 ARCADE CLASSICS 1. 005 54. Air Inferno 111. Arm Wrestling 2. 1 on 1 Government 55. Air Rescue 112. Armed Formation 3. 1000 Miglia: Great 1000 Miles 56. Airwolf 113. Armed Police Batrider Rally 57. Ajax 114. Armor Attack 4. 10-Yard Fight 58. Aladdin 115. Armored Car 5. 18 Holes Pro Golf 59. Alcon/SlaP Fight 116. Armored Warriors 6. 1941: Counter Attack 60. Alex Kidd: The Lost Stars 117. Art of Fighting / Ryuuko no 7. 1942 61. Ali Baba and 40 Thieves Ken 8. 1943 Kai: Midway Kaisen 62. Alien Arena 118. Art of Fighting 2 / Ryuuko no 9. 1943: The Battle of Midway 63. Alien Challenge Ken 2 10. 1944: The LooP Master 64. Alien Crush 119. Art of Fighting 3 - The Path of 11. 1945k III 65. Alien Invaders the Warrior / Art of Fighting - 12. 19XX: The War Against Destiny 66. Alien Sector Ryuuko no Ken Gaiden 13. 2 On 2 OPen Ice Challenge 67. Alien Storm 120. Ashura Blaster 14. 2020 SuPer Baseball 68. Alien Syndrome 121. ASO - Armored Scrum Object 15. 280-ZZZAP 69. Alien vs. Predator 122. Assault 16. 3 Count Bout / Fire SuPlex 70. Alien3: The Gun 123. Asterix 17. 30 Test 71. Aliens 124. Asteroids 18. 3-D Bowling 72. All American Football 125. Asteroids Deluxe 19. 4 En Raya 73. Alley Master 126. Astra SuPerStars 20. 4 Fun in 1 74. Alligator Hunt 127. Astro Blaster 21. 4-D Warriors 75. AlPha Fighter / Head On 128. Astro Chase 22. 64th. Street - A Detective Story 76.
    [Show full text]
  • Game List of Game Elf (Vertical) 001.Ms
    Game list of game elf (Vertical) 001.Ms. Pac-Man ▲ 044.Arkanoid 002.Ms. Pac-Man (speedup) 045.Super Qix 003.Ms. Pac-Man Plus 046.Juno First 004.Galaga 047.Xevious 005.Frogger 048.Mr. Do's Castle 006.Frog 049.Moon Cresta 007.Donkey Kong 050.Pinball Action 008.Crazy Kong 051.Scramble 009.Donkey Kong Junior 052.Super Pac-Man 010.Donkey Kong 3 053.Bomb Jack 011.Galaxian 054.Shao-Lin's Road 012.Galaxian Part X 055.King & Balloon 013.Galaxian Turbo ▲ 56.1943 014.Dig Dug 057.Van-Van Car 015.Crush Roller 058.Pac-Man Plus 016.Mr. Do! 059.Pac & Pal 017.Space Invaders Part II 060.Dig Dug II 018.Super Invaders (EMAG) 061.Amidar 019.Return of the Invaders 062.Zaxxon ▲ 020.Super Space Invaders '91 063.Super Zaxxon 021.Pac-Man 064.Pooyan 022.PuckMan ▲ 065.Pleiads 023.PuckMan (speedup) 066.Gun.Smoke 024.New Puck-X 067.The End 025.Newpuc2 ▲ 068.1943 Kai 026.Galaga 3 069.Congo Bongo 027.Gyruss 070.Jumping Jack 028.Tank Battalion 071.Big Kong 29.1942 072.Bongo 030.Lady Bug 073.Gaplus 031.Burger Time 074.Ms. Pac Attack 032.Mappy 075.Abscam 033.Centipede 076.Ajax ▲ 034.Millipede 077.Ali Baba and 40 Thieves 035.Jr. Pac-Man ▲ 078.Finalizer - Super Transformation 036.Pengo 079.Arabian 037.Son of Phoenix 080.Armored Car 038.Time Pilot 081.Astro Blaster 039.Super Cobra 082.Astro Fighter 040.Video Hustler 083.Astro Invader 041.Space Panic 084.Battle Lane! 042.Space Panic (harder) 085.Battle-Road, The ▲ 043.Super Breakout 086.Beastie Feastie Caution: ▲ No flipped screen’s games ! 1 Game list of game elf (Vertical) 087.Bio Attack 130.Go Go Mr.
    [Show full text]