codecon-dev / codecon-gather-api

A Gather.town WebSocket API interaction server that customizes the CodeCon Tech Event experience

Home Page:https://www.codecon.dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

📡 CodeCon-Gather API

An API that interacts with Gather.town API and customizes the user experience on the CodeCon Tech Event!

Test Map: https://app.gather.town/mapmaker/Ixw7EUhrLHlfQwqb/codecon-gather-api-test-1

How to Develop

# Copy .env.example to .env
cp .env.example .env

# Set the environment variables on .env
# Get GATHER_API_KEY from https://app.gather.town/apiKeys
# Get GATHER_SPACE_ID_1 from your space URL.
# Eg: 5jnhRfDYRIUyDmbF/my-space

# Install dependencies
npm install

# Run server
npm run dev

Tips

Finding the event name and payload you wish to use

Go to node_modules/@gathertown/gather-game-common/src/events.proto and check ServerClientEvent message.
You might want to add this extension for syntax highlight.
On VSCode, select the event name such as MapSetObjects, press Ctrl+D and find its payload.
You can also Ctrl+Click on the payload class names to check their content. In this case, WireObject.

Debugging user space stats

You can use the logSpaceStatsOnUserMovement function to log the space stats (steps, online time, etc) for a user on the current date and the current space they are located at.

Usage example:

import { logSpaceStatsOnUserMovement } from "../../utils/debug";
//...

export async function trackSteps(data: PlayerMovesEventData, context: ServerClientEventContext) {
  try {
    const playerId = context?.playerId!
    const friendlySpaceId = getFriendlySpaceId(context?.spaceId)

    const userManager = UserManager.getInstance()
    const user = userManager.getUserInMemory(playerId)
    if (!user) return

    logSpaceStatsOnUserMovement(user, friendlySpaceId)
    const playerNewPosition = getPosition(data)
    //...
  } catch (error) {
    console.log(error)
  }
}

References

About

A Gather.town WebSocket API interaction server that customizes the CodeCon Tech Event experience

https://www.codecon.dev/


Languages

Language:TypeScript 98.0%Language:JavaScript 2.0%Language:Procfile 0.0%