top of page

Warehouse employee simulator

ROLE

Lead Programmer

DESCRIPTION

In this game you have to collect all of the boxes that are on the order list, you will have to put them on a pallet and then use the forklift to put it in the truck. If you do this before the time runs out you will proceed to the next level.

YEAR

2023

GENRE

single-player simualtion

PLATFORM

PC VR

My work

  • Save and load system: A script which saves game data to a file and can load it
  • Vr rig: A complete movement system for virtual reality
  • Score system: A system that gives the player points based on their perfomance
  • Level load system: a system wich can load levels and can unlock the next level

Save and load system

This project needed a save and load system, i had to make a few important choices of how i had to make this system:

1. Data saving: I usually only used systems that save int and floats. I wanted to also save player data like the name the player choose. so i decided to save that string as well.

2. File Format: There where a few different file types i could choose from, i chose for .JSON, this format is less secure but ensures readability and is compatible with int, float and string.

3. automatic saving and loading: Most systems give the player the ability to save but in this project it made more sens to automatically save after each level and load after starting the game, exiting a level or returning to the level select screen.

bottom of page