Cidade Alta

3D
TypeScript
Node.js
C#
Lua
Scripting
Modding
UGC

Cidade Alta was the largest GTA Roleplay community in Latin America. It was built on FiveM, Rockstar Games' UGC platform. Besides the classic game mode, there were also competitive game modes such as 5x5 and Battle Royale.

At Cidade Alta I played more of a generalist role, doing work across several areas such as gameplay, UI, online services and internal tooling.

Classic game mode

  • Setup an internal documentation with GitHub authentication using Docusaurus.
  • Re-built the character clothing system from the ground up. Each clothing became an individual item in the character inventory.
  • Built an automated screenshot tool to support the new clothing system.
  • Created a modular quest system with server-side validation. Game designers could easily author new quests by adding a new JSON file specifying settings like MISSION_START, MISSION_ACTION, and MISSION_REWARD. The gameplay team made multiple types of starts, actions and rewards available for designers to choose. Mission docs
  • Built a new voice chat using the platform's Mumble API to replace the old TeamSpeak server. Features included proximity chat and radio channels. Used a grid spatial optimization to reduce bandwidth.
  • Maintained a custom tool to support Native Audio, a platform feature unlocked by the new voice chat, that used the base game audio subsystem to emit the player's voice.
  • Improved UI performance using virtual lists.

Battle Royale game mode

  • One of the two leading developers. Collaborated closely with game designers, artists and QA.
  • Implemented a party system. Features include invites, party leader, and kicking.
  • Implemented a lobby scene that showed the party members' characters. Mission docs
  • Implemented ray picking for the character skin selection scene. Skin selection
  • Implemented a seed-based procedural generation system for item spawning.
  • Implemented grid spatial optimization to handle thousands of items on the map. Leveraged the deterministic procedural generation to only track deltas on the server.
  • Implemented culling to reduce the number of physical objects spawned on the map.
  • Implemented CI/CD with GitHub Actions.