Skip to content
This repository has been archived by the owner on Jan 3, 2020. It is now read-only.

Longwelwind/Phi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Phi

Warning: This mod is no longer maintained. A reimplementation of it is currently in progress under the name Phinix, check it out!

Phi is a Rimworld mod that enables online multiplayer interactions between players.

Projects

PhiClient

This is the mod for Rimworld. Rim-world specific files (like Defs) are located in PhiClient/Phi

PhiClient has multiples dependencies, and Rimworld Mod's Launcher unfortunately requires assemblies to be loaded in the order in which all dependencies are available. A good way to ensure that is that change the name of the assemblies to make sure that the alphabetical order respects the dependency order. For example:

  • 1-websocket-sharp.dll
  • 2-SocketLibrary.dll
  • 3-PhiData.dll
  • PhiClient.dll

PhiServer

This is the server program.

PhiData

Contains the shared code between the server and the client. It is mainly the data structures that are synced between the clients and the server. Used by PhiClient and PhiServer.

SocketLibrary

A wrapper library around websocket-sharp. Used by PhiClient and PhiServer.