[devlog&Open Beta] M.A.D. Program Pilot Training

0 favourites
  • 3 posts
From the Asset Store
You must shoot down the enemy planes and eliminate them to earn points.
  • I've been working on a game I call M.A.D. for the past 2.5 years, It's a game where you program a solution to a maze for a robot to follow.

    Today I've released it for public beta testing, it's been a long road to get here. Here's the offcial blog post about the release if anyone is interested: http://www.gaming-disorder.com/nameoceo/a-m-a-d-journey-public-beta/

    And a brief history can be found here: http://www.gaming-disorder.com/recent/a ... ey-part-1/

    The first space stations of The Order are under construction, and we are looking for the best and brightest to join us on this amazing step forward for our species.

    This is the training and evaluation module for Program Pilots(Prolots).

    If you have quick reflexes, superior mental abilities and are capable of dealing with the stresses of having people’s lives depend on you, then this might just be the opportunity of a life time!

    Prolots are responsible for programming, with split second decisions, a route to whatever system is currently failing for the repair droids.

    Granted, sitting in a room waiting for a system to fail or malfunction may sound a little dull. But when a few seconds can be difference between 10,000’s of civilians surviving or dying in mass explosions, or being sucked into the vacuum of space, or being gassed with some exotic poison because the life support system has decided to go a little haywire… Well, nothing quite beats that rush when the alarm goes off.

    Do you think you have what it takes?

    Download the training program and we’ll see.

    Android: https://play.google.com/store/apps/deta ... rGames.MAD

    I would love to hear everyone's feedback <img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile">

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • The Open Beta is now on the Scirra Acarde:

    https://www.scirra.com/arcade/puzzle-ga ... ining-7671

    *Edit* Changing this post into a reproduction of the breif history of MAD posted at the link in the first post.

    This blog will be mostly about the early progression of M.A.D.

    From it’s humble beginnings as a thought bubble

    to what it is today.

    N.B. that the thought bubble most definitely did “NOT”, in any way, shape, or form, occur while high on a certain substance that occurs naturally in a wonderfully useful, underutilised, plant. That plant was demonised and made illegal thanks to a few powerful industries, racism, ignorance, control of the public and fear politics. The interesting history of that plant however is not the subject of today’s blog post.

    The thought bubble was something like this: A game where you program a robot, through a maze, as fast as possible.

    I was instantly excited about it. It was a simple concept for a game, which, to my knowledge, has never been implemented before and therefore would have original, unique gameplay. It fit very nicely with a touch screen control system and so would work well as a mobile app. I also thought that it should be fairly simple to program, which was definitely a plus!

    Different elements and gameplay ideas, like tiles that effected the robot in various ways, also started streaming into my mind.

    I set about looking into how to make it. It was/is my first foray into game development. I had played around with programming all my life, but was definitely not ready to start programming games from scratch. Plus I’d never had an idea for a game that I thought was worth bothering with.

    The first couple of days was pure research. How do I make a Mobile game? What Language to program in? I didn’t really what to try and learn how to use javascript to build a prototype, it would take to long… I don’t remember exactly how I found Construct 2 but find it I did. It looked like it would fit well, an event based programming system which meant I didn’t have to be to concerned about learning Java, and, a drag and drop interface for graphics. It built HTML5 code and could export to IOS, Android, Desktop and Web. I downloaded the free version and by the end of the first day I had a working prototype on my phone which I was showing my friends eagerly. The gameplay was already fun and addictive even if it did look quite…. Well… Like this:

    Before the night was over my friends had already decided they were going to get a cut of the millions I would surely make 😉 (Flappy Bird was still fresh in our minds and I must admit, I was excited about the possibility of making enough money off the game to live.)

    I should quickly mention that before this I had never really had something I wanted to do as a “job”. People would ask what I wanted to do as a career but I often didn’t have an answer and was non committal. I had no clear idea about my future (still don’t really, but it’s for different reasons now…) I had things that I was good at. Things that, luckily for me were “highly valued” in this world of ours. My computer skills, “entrepreneurial” aspirations and aversion to a 9-5 lifestyle led me to start my own computer business at 19, but I don’t think I ever really saw it as something I’d spend my whole life doing and subsequently never really committed to it…

    The point is this, this game and Indie game development was the first time I was really excited about a possible career/work choice. The first time I felt like I had something I’d want to keep doing. As one of my best friends put it, my ex would have very happy to see I was finally excited and engaged about doing something with my life. (Not that I agreed I was doing nothing with my life of course).

    Anyway, back to M.A.D.

    v001 was 3 levels, built on the 19/10/13. The control system had all the buttons in the bottom left.

    v0015 was built later the same day, it had 4 levels and tested a different button layout, this was the version I first showed my friends:

    The next step was a level editor, which included a switch to a tile based level design system and therefore a quick look for open source tiles was needed. A few hours googling to find what I needed, then learning how to build it in Construct 2 and v003 was finished 4 days later on the 23rd:

    During all this I was scribbling ideas all over the place, most of it went into a notebook but whatever was easy and accessible at the time (including sticky notes, random envelopes and notepads) was used to jot down new gameplay elements or flesh out solutions to problems I faced.

    Things like how to store the levels, new tile ideas, what sorts of arrays I was going to use (1d,2d,3d), what each of the locations in the array was going to store… Here are a few examples, gameplay concept on the back of a receipt, The LevelData Array on a notepad and a doodle on a scrap piece of paper (this one is actually fairly recent, you’ll recognise the robot from Susan’s concept art):

    The biggest challenge of this first crammed programming and designing phase was AutoTiling. A Process where the correct wall tile is automatically worked out and the correct version of that wall is placed. That way the level editor can use just 1 wall tile, instead of requiring me (and my players) to manually select which wall fits in each place. (A very useful feature considering there are 47 possible wall tiles that need to be placed in different locations depending on which tiles are surrounding said tile). If you don’t quite get that, read on and hopefully it becomes a little clearer.

    Pages of the notebook and hours of my time were dedicated to finding a solution to “Auto Tiling” the most efficient way possible.

    To do so with just the four surrounding tiles is easy. Assign a value of 1 to the top, 2 to the left, 4 to the bottom and 8 to the right. Check surrounding tiles and if there is a wall above the current wall then current tile = 1. Top and Right, CT = 9 which looks something like this = └ CT of 14 would be bottom, left and right = ┬ :

    To work out the diagonals as well and therefore pick from all 47 available wall options… Well, that’s what took the pages and hours… Here are a few pictures of a couple of the pages to give you an idea:

    Finally after 12 days I had the solution and a build with fully implemented autotiles: (Bit messy ay?)

    In the next part we’ll cover how my focus then shifted to better graphics, the many variations the tutorials have been through, and some of the reasons behind why I stopped working on it for about half a year.

    I’ll also be opening M.A.D up to early access beta testing. Beta testers are going to get to play with the level editor for free, something that most likely won’t be in the final public release for free, so be sure to sign up and check it out.

    This will all happen on the first official #MADMonday, next week (9th May 2016).

    Thanks for reading and following along on this journey of ours,

    I look forward to sharing the rest of the story on Monday,

    See you then,

    Nameo

    P.S. Remember that we now have a twitter account so if you’re on twitter follow us

    Also be sure to like our facebook page if you haven’t already: http://fb.me/GamingDisorderAU

  • We are in the process of updating the Robot:

    Read the full blog post here: http://www.gaming-disorder.com/uncatego ... on-part-1/

    And the full blog post from our concept artist about designing the robot in the first place: http://www.gaming-disorder.com/game-upd ... he-bottom/

    A couple of Pictures:

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)