← Go Back

The 7th Floor (WIP)

About

This is a WIP game being made in Unreal Engine 5 using mostly C++ and FMOD for the audio.

Project Info

  • 👥 Team Size: 1
  • 🔧 Engine: Unreal Engine 5 (C++ & FMOD)

Introduction

This is a WIP game being made in Unreal Engine 5 using mostly C++. I am also using this project to learn more about FMOD integration.

It will be a story-driven puzzle game with dialogue and inventory mechanics. It will not be yet another horror game, but rather something more akin to a mystery thriller.

Gameplay systems so far

So far, I have implemented the following gameplay systems with C++:

  • ✓
    General Interaction System

    Core interface for interacting with any interactible actors

    Implementation Details

    The interaction system is built around an IInteractable interface that any object in the game can implement to be interacted with.

    The character class ray casts from the player's camera and checks if it hit an object that implements IInteractable

    What it does

    • Displays context-fitting prompts that change based on the object type. e.g: "Read Book", "Talk to Bartender", "Inspect Lamp", etc.
    • Every interactable actor implement a virtual interaction method event that is executed when the player hits the interaction button.

    Code Snippet

    UINTERFACE(MinimalAPI)
    class UInteractable : public UInterface
    {
                            
        GENERATED_BODY()
        
    };
                            
    class PRISTSWITHGUNS_API IInteractable
    {
                            
        GENERATED_BODY()
                            
    public:
        
        virtual void Interact(class ACharacter* Character) = 0;
        
        virtual FText GetInteractionText() const = 0;
        
    };
  • ✓
    Book Reading System

    Interactive system for reading in-game fictional books

    Implementation Details

    The book system uses a UDataTable that holds every book in the game. Each row contains the title, author's name, and a collection of pages.

    The book actor class has a datatable row property for choosing which book that actor represents, and a mesh property making it easy to place different books in the level.

    Code Snippet

    
     /***********************************************************************************
     *                                   Books Data
     *
     *      This holds the information needed to display the contents of a book
     *      Important: In order for the pages to be filled, I recommend using around
     *      360 characters for each page string.
     ***********************************************************************************/
               
    USTRUCT(BlueprintType)
    struct PRISTSWITHGUNS_API FBooksData : public FTableRowBase
    {
        GENERATED_BODY()
               
        UPROPERTY(EditAnywhere, BlueprintReadOnly)
        FText BookName;
               
        UPROPERTY(EditAnywhere, BlueprintReadOnly)
        FText Author;
               
        // Each string should have around 360 characters, give or take
        UPROPERTY(EditAnywhere, BlueprintReadOnly)
        TArray Pages; 
        
    };
  • ✓
    Non-linear Dialogue System

    Branching conversations with NPC's. Also doubles as an "Observation" system

  • ✓
    Grid Puzzle System

    Two variations of grid-based puzzle mechanics, once again using inheritance for scalability, making it relatively easy to implement new variants of this puzzle format

  • ⟳
    Inventory System (WIP)

    System for collecting, managing and inspecting items

  • ⟳
    Pause/Main Menus (WIP)

    The expected menus including an options tab for adjusting graphics and controls

Demo video

This project is still very early on in development, but nevertheless, here is a quick demo video showcase

Demo recorded on 18-03-2025
There have been changes and new things have been added since then.

Planned synopsis

It's a cold and rainy night outside, as you step into the Midnight Hotel. A big-shot real estate mogul hired you to investigate the seventh floor of his newly acquired property. There are strange and intricate locking mechanisms on every door and no one knows what lies beyond them. Are you ready to find out?

Github Repository

You can find the C++ code I have done so far in the following Github repository. Unfortunately, because of Github's repository size limits, I couldn't upload the entire game. I am using Diversion as my personal version control, instead of git.

Still working on the rest of this page... 🚧