Peter Sekan

ux & frontend engineer • creative technologist

No Game

Wed Mar 01 2023

Start screen of our NoGame

Building A Game With Bootstrap

This was my second project during the Ironhack boot camp in Feb 2023. My partner was Alexandre Benat. And our task was to build an Express JS application with a Mongo DB database and deploy it on Adaptable.

Technical Requirements

Responsive design is not a requirement, but it’s nice to have.

Team & Idea

Alex and I share common interests and we have already worked in a corporate environment. Therefore, it was easy to align the way of working. We had a Kanban board for our tickets and a couple of daily touchpoints. And Alex came up with a great idea. He suggested building a clone of the famous OGame. I was fine with it, and Alex promised to take care of the game’s logic.

The idea of the game is to buy a planet and build facilities on it to harvest resources, to update your facilities, or to build new ones, that can generate resources. I am sure, you do understand the principle. It was obvious, that we couldn’t build a 1:1 clone of the original. So, we agreed on the following features:

What’s Up With Bootstrap?

During the week before our project, we had a few lessons where we learned about Bootstrap. I’ve worked with it before, but that was six years ago. And I must admit that I didn’t enjoy it much. Somehow, Bootstrap always got in my way, and I had to work around it to achieve my desired results. Therefore, I decided to give it another chance and try to write as few custom CSS as possible.

And it was fun, honestly! Bootstrap makes it very easy to start and build user interfaces. Just explore their examples and copy the source code that seems to fit best. Yes, you will probably have to adjust it to your needs. But it is an easy and fast process. And the example collection offers so many goodies!

When I tried to figure out why it was so painful for me to use Bootstrap in the past and why I’ve enjoyed working with it lately, I found that we both probably have matured.

Visual Design

As a former designer, I know how much time can be spent creating visual assets and a general color theme. A time that we didn’t have! First, we thought about what we needed. We needed images of the different planets and the facilities. We wanted different images for different levels, at least for the facilities. We agreed that these images should change at every third level. But how would we get these images? Our solution was Dalle-E. We played around with this AI image generator for a couple of hours, making sure that the images had a matching style. At the end, we had twenty images for planets and six for buildings (two building types times three states).

Three different planets Two different buildings

Regarding the color theme, we found an easy way with Themestrap. While I am writing this article, Themestrap has an issue with their certificate that results in warnings. Usually, you can pick from many different color themes for Bootstrap. Some themes are inspired by applications like Slack, or Trello, others are made by the community. After choosing a theme, the app provides you with the necessary CSS. You can link it or download it to your project. It is important that it needs to be loaded after the original CSS from Bootstrap and before your own custom one.

For the icons, we decided to use the ones from Feather Icons. In my humble opinion, the ones from Bootstrap are a bit too bulky. No offense, just personal taste.

The Result

Our game can’t compete with the original, but that was never the purpose. Still, it is fun to play, and we learned a lot. Here is the link if you want to give it a shot: https://nogame.adaptable.app/

How to play?

  1. Visit NoGame
  2. Create an account
  3. Log in
  4. Create your first planet
  5. Add a building
  6. Harvest resources
  7. Level up your buildings

Sorry, no high-score board for now!

Engineering

Sourcecode

You can learn more about our project and read the source code by visiting our GitHub organization or the repository of our game.

Tools

If you need to build an Express JS app, try Ironlauncher! It provides a nice boilerplate for your project with authentification and other goodies!

Deployment

Learning Achievements

Game logic, safe and secure routes, and synchronicity of the stats between the front and back end. — Alexandre

Alex did a great job figuring out the logic regarding how much facilities cost and how many resources they generate and took especially care of the synchronicity of the data between the front and the back end.

Don’t use custom CSS, only Bootstrap. Learn about using Mongo DB and Handlebars. — Pete

I have fulfilled my goal as well. This project has only two custom CSS rules. One defines the used font, and the other adjusts the size of the icons a bit.

Besides that we have learned a lot about building a server with an API with NodeJS, respectively with ExpressJS, which was the main goal of this exercise. It gave us the convidence to pick up bigger challenges.

I want to say thank you to Alex, who was a great partner. It was really awesome working with you, buddy!