Message PlayerListMessage

File: Overlay/YMMOG/YMMOGMessage.msg

Message used to request and send a PlayerList for a specific SubSpace

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

YMMOGMessage

Base message for all messages used by YMMOG

Fields:

Name Type Description
timeStamp double

simTime() when message was sent

subSpaceId int

the SubSpace belonging to the PlayerList

action int
tree TreeNode[]

TreeNode holding the PlayerList

Source code:

message PlayerListMessage extends YMMOGMessage {
    fields:
        double timeStamp;    // simTime() when message was sent
        int subSpaceId;    // the SubSpace belonging to the PlayerList
        int action;    
        TreeNode tree[];    // TreeNode holding the PlayerList
}