Europa Explorer - Non-Violent Exploration Game - Playable Alpha Build

0 favourites
From the Asset Store
A complete set of tiny sprites and tiles for your retro platformer game.
  • I finally finished all the different science tools that I had planned at the start so I made a video going over it all. Turned out to be a lot harder to make a video than I thought. My respect level for youtubers that push out constant content has jumped way up.

    Subscribe to Construct videos now

    The world is done with several layers of tilemaps like this.

    The probe vehicle is done with a bunch of different sprites pinned together at 99% opacity and pixelate 3 effect.

  • Great video and interesting concept. Besides being fun for general gaming, I could see this be interesting for education / the classroom also (in terms of inspiring exploration.)

  • Interesting, I think there's a lot more going on than I see at a first glance.

  • Thanks for checking it out. There is a lot to unpack in what I've got setup so far. Going to take a couple more videos to explain everything.

  • Trying to address performance concerns I added a debug fader sprite that pops each time a new tile is revealed, the content of the tilemaps is calculated on the fly. This helped my find a fix a bug that was bogging down the game in some situations.

    GIF

    The way the world reveal works is I calculate the triangle area for what you can see and save it as a list of coordinates, and then just brute force the update. The update routine runs 10x per second and cycles through every coordinate in every active list every update. I sort them so I do the brightest colors last, so it overwrites the darker colors, but this is really inefficient when I get lots of overlapping areas that are all revealed and causes a big spike of CPU usage every time the update runs.

    I wanted to see if I could do more to make it run better. So I created a new list that holds a list of the coordinate lists and I change the update routine to run at 60fps, but only update 1 triangle on the list each time. So now I slowly cycle through the list and that smooths out the processor usage.

    GIF

    That caused other problems with overlapping triangles. I ended up using a dictionary to store keys for the X&"|"&Y coords of every tile when it gets updated, so I could see if that tile had already been set this cycle if it is in more than one coordinate list. Each cycle clears out the dictionary contents and I then sorted the list of lists to update the brightest ones first and it all works.

    GIF

  • Subscribe to Construct videos now

    New update video after much fighting with my audio interface.

    I made one more tweak to the optical reveal since my last post. The change from one opacity to the next in the tilemap is tracked with an instance variable timer. Instead of resetting the timer every time it elapsed to some new "time + 0.25" value, I just added a flat chunk of time like "self + 0.25", this keeps every triangle's opacity in sync even through the updates are distributed out and happening at different times.

  • Subscribe to Construct videos now

    I have a new update video on my progress and a playable Alpha build if you want to check it out for yourself.

    aggrocasual.com/download

  • Alpha 4 update video introduces the science lab section of the home base.

    Subscribe to Construct videos now
  • I have a new update video on the project, progress continues and a new alpha build is available to play.

    Subscribe to Construct videos now
  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Great job!!! I am really impressed...thank you for sharing your progress!!

  • This creation is something truly unique. May I ask for Your background (apart of being game developer), because there are some interesting physics related stuff?

    Besides of an exploration based on scientific approach on Europa's enviro, is there a specific goal?

  • Thanks for the support. I do not have a relevant background beyond being obsessed with KSP and all things space. Spent a lot of time researching the Curiosity rover and the upcoming 2020 and ExoMars rovers. My plan is to have a series of maps you explore as your progress the game, each has specific tasks you must do and then you will unlock new software upgrades for the probe that give you new abilities.

  • I see. Keep up the good work!

  • New update video is done that covers creatures and some new probe stuff.

    Subscribe to Construct videos now
  • I have a new update video and a new playable alpha build posted. Thanks for checking it out!

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