About

Hello, I'm Bruno Castanheira, a Junior Game Developer Engineer, and a gamer from Portugal that worked at Frontier Developments as a Graduate Programmer. I started playing video games when I was a child, since then it's been my hobby. After learning the basics of programming, I started creating games, now combining the two, and is something that I enjoy.

I have a bachelor's degree in Digital Games Development Engineering

I have experience with C#, C++, Java, Unity, Unigine Engine. C# was mainly used in Unity, and Mono Game.

Java was my first programming language, in that time I was playing Minecraft and I got interested in creating plugins for it.

C# has been my number one language before working at Frontier Developments, so now C++ is the one where I have real work experience, I started learning it at the University for a 3D Graphics Application. I used C++ with Unigine Engine and Unreal Engine.

Hobbies: Gaming, Programming, Biking and Sim Racing.

EXPLORATION

Duration: 6 months

« Solo Project »

Technologies: Unigine C++

Story

This is a tech demo, where I explore game mechanics.

Game Systems:

  • Spaceship Controller
  • Spaceship Landing Assist
  • Car Controller
  • Asteroids Spawner
  • Air Traffic Controller

Features

Spaceship Controller

To move the spaceship the player can use the following keys:

[W] Forward thrust
[S] Backward thrust
[A] Strafe left
[D] Strafe right
[SPACE] Strafe up
[LCTRL] Strafe down
[E] Roll to the right
[Q] Roll to the left
[R] Braking Mode (adds drag to the spaceship, making the spaceship slow down if doesn't have other forces being applied)
[N] Request landing pad to the air traffic controller / Enables landing assist HUD
[ENTER] Submit position, tells the score
[0] Enable/Disable debug UI

Spaceship Landing Assist

Helps the player land the spaceship by displaying the distance and rotation alignment to the landing pad.

[Code] Score calculation:

                // File: ShipParkingAssist.cpp
    
                float ShipParkingAssist::GetLandingScore() const
                {
                    float finalScore = 0.0f;

                    // Time spent in the game
                    const float time = Game::getTime();

                    const Math::Mat4 landingTransform = m_LandingZone->getNode()->getTransform();
                    const Math::Mat4 shipTransform    = m_ShipBody->getTransform();

                    // Calculate the alignment values
                    const float dotPitch = Math::dot(shipTransform.getAxisX(), landingTransform.getAxisX());
                    const float dotRoll = Math::dot(shipTransform.getAxisY(), landingTransform.getAxisY());
                    const float dotYaw = Math::dot(shipTransform.getAxisZ(), landingTransform.getAxisZ());

                    const float rotationScore = dotYaw + dotPitch + dotRoll;
                    finalScore = rotationScore + distance + time;
                        
                    // Invert the result so the higher number is the best score
                    finalScore = (1.0f / finalScore) * m_ScoreMultiplier;
                    
                    return finalScore;
                }
              

Asteroids Spawner

exploration image

A small system to spawn asteroids in random positions with collision prevention

[Code] Parameters to customize the spawn:

                  // File: AsteroidsSpawner.h
      
                  PROP_PARAM( Float, m_RadiusArea          , 250.0f)
                  PROP_PARAM(   Int, m_MaxRandomTries      , 10)
                  PROP_PARAM(   Int, m_AsteroidsToGenerate , 80)
                  PROP_PARAM( Float, m_MinScale            , 1.0f)
                  PROP_PARAM( Float, m_MaxScale            , 8.0f)
                  PROP_PARAM(String, m_AsteroidNode        , "nodes/defaultAsteroid.node")
                

To spawn the asteroids, first I generate random positions within the max radius, then generate random scales within the min and max scale values.

When I have the position and the scale they are stored inside a list.

In this case, it's done 80 times (number of asteroids to generate), start spawning asteroids in the world. Now they are in the world, so it means time to clear the list data (positions and scales).

Mini Air Traffic Controller

exploration atc image

The Air Traffic Controller has a list of landing zones. Every time a spaceship wants to land, a landing zone request is detected.

After that the ATC finds an available landing zone with the correct ship size and assigns that landing zone to the spaceship.