Difference between revisions of "Standards:GMCP Client Variables"

From Mudlet
Jump to navigation Jump to search
(Retired)
Tag: Blanking
 
(37 intermediate revisions by the same user not shown)
Line 1: Line 1:
== GMCP Client Variables Sharing Standard ==
 
  
=== Overview and Rationale ===
 
The GMCP Client Variables Sharing extension provides a standardized way to exchange client-specific variables between MUD clients and game servers using GMCP messages. This facilitates enhanced user experiences by allowing servers to adjust gameplay and UI elements based on client-provided data.
 
====Rationale====
 
As MUDs become more complex, the need for customizable and dynamic interactions between clients and servers has grown. Sharing client-specific variables allows for personalized gameplay experiences, seamless UI adjustments, and improved accessibility features. By standardizing this exchange, the GMCP Client Variables Sharing extension ensures that all participants in the MUD ecosystem can benefit from enhanced communication and data sharing.
 
====Consent Management Process====
 
A critical aspect of sharing client-specific variables is obtaining user consent. This process ensures that users are aware of what data is being shared and have control over their personal information. This exchange of information is geared towards finding out what data is available in the client, receiving only what is needed from the server or script, and prompting the user for fields where consent is necessary and the fields are desired.
 
=== Specification for Client.Variables ===
 
 
==== Commands ====
 
 
===== Client.Variables.Default =====
 
'''Purpose''': <code>Client.Variables.Default</code> is sent by the server to acknowledge support for the Client.Variables namespace. The client will synchronously respond with a <code>Client.Variables.List</code> message.
 
<syntaxhighlight lang="json">
 
Client.Variables.Default {}
 
</syntaxhighlight>
 
===== Client.Variables.List =====
 
'''Purpose''': The client sends an array of available client variables and their attributes with <code>Client.Variables.List</code>. The server may asynchronously respond with a <code>Client.Variables.Request</code> message.
 
======Attribute Details======
 
{| class="wikitable “wikitable”"
 
|-
 
!Attribute
 
!Description
 
!Value
 
!Required
 
|-
 
|'''''name'''''
 
|Client variable identifier.
 
|(text)
 
|yes
 
|-
 
|'''''available'''''
 
|Indicates if the variable is available for use. Values that require consent default to <code>false</code>.
 
|<code>true</code> or <code>false</code>
 
|yes
 
|-
 
|'''''updatable'''''
 
|Indicates if the variable can be updated by the server.
 
|<code>true</code> or <code>false</code>
 
|yes
 
|}
 
<syntaxhighlight lang="json">
 
Client.Variables.List [
 
    {"name": "256_COLORS", "available": true, "updatable": false},
 
    {"name": "ANSI", "available": true, "updatable": false},
 
    {"name": "BOLD_IS_BRIGHT", "available": true, "updatable": true},
 
    {"name": "CHARSET", "available": true, "updatable": true},
 
    {"name": "CLIENT_NAME", "available": true, "updatable": false},
 
    {"name": "CLIENT_VERSION", "available": true, "updatable": false},
 
    {"name": "FONT", "available": false, "updatable": false},
 
    {"name": "FONT_SIZE", "available": false, "updatable": false},
 
    {"name": "LANGUAGE", "available": false, "updatable": false},
 
    {"name": "MTTS", "available": true, "updatable": false},
 
    {"name": "OSC_COLOR_PALETTE", "available": true, "updatable": false},
 
    {"name": "SCREEN_READER", "available": false, "updatable": false},
 
    {"name": "SYSTEMTYPE", "available": false, "updatable": false},
 
    {"name": "TERMINAL_TYPE", "available": true, "updatable": false},
 
    {"name": "TLS", "available": true, "updatable": false},
 
    {"name": "TRUECOLOR", "available": true, "updatable": false},
 
    {"name": "USER", "available": false, "updatable": false},
 
    {"name": "UTF-8", "available": true, "updatable": false},
 
    {"name": "VT100", "available": true, "updatable": false},
 
    {"name": "WORD_WRAP", "available": true, "updatable": false}
 
]
 
</syntaxhighlight>
 
=====Client.Variables.Request=====
 
'''Purpose''': The server requests specific client variables with <code>Client.Variables.Request</code>. The client will synchronously respond with a <code>Client.Variables.Update</code> message.
 
 
To encourage consent to collect personal information, custom messages to describe the reason for collecting the information may be included for the client to display with the <code>purpose</code> attribute.
 
======Attribute Details======
 
{| class="wikitable “wikitable”"
 
|-
 
! Attribute
 
!Description
 
!Value
 
!Required
 
|-
 
|'''''name'''''
 
|Client variable identifier.
 
|(text)
 
|yes
 
|-
 
|'''''purpose'''''
 
|Reason for collecting the information.
 
|(text)
 
|no
 
|}
 
<syntaxhighlight lang="json">
 
Client.Variables.Request [
 
    {"name": "BOLD_IS_BRIGHT"},
 
    {"name": "CHARSET"},
 
    {"name": "FONT", "purpose": "Match client font to other user interface elements"},
 
    {"name": "FONT_SIZE", "purpose": "Match client font size to other user interface elements"},
 
    {"name": "LANGUAGE", "purpose": "Match client language to adjust game and user interface content"},
 
    {"name": "SCREEN_READER", "purpose": "Enable accessible features to adjust game and user interface content"},
 
    {"name": "SYSTEMTYPE", "purpose": "Consider client operating system to adjust game and user interface elements"},
 
    {"name": "USER", "purpose": "Indicate client account:character name to the game server"}
 
]
 
</syntaxhighlight>
 
=====Client.Variables.Update=====
 
'''Purpose''': The client sends updates for requested variables with a <code>source</code> attribute of <code>request</code> with <code>Client.Variables.Update</code>.
 
======Attribute Details ======
 
{| class="wikitable “wikitable”"
 
|-
 
!Attribute
 
!Description
 
!Value
 
!Required
 
|-
 
|'''''available'''''
 
| Indicates if the variable is available for use.
 
|<code>true</code> or <code>false</code>
 
|Yes
 
|-
 
|'''''updatable'''''
 
|Indicates if the variable can be updated by the server.
 
|<code>true</code> or <code>false</code>
 
|Yes
 
|-
 
|'''''requested'''''
 
|Indicates if the variable was requested by the server.
 
|<code>true</code> or <code>false</code>
 
|Yes
 
|-
 
|'''''source'''''
 
|Indicates the source of the update.
 
|<code>request</code> or <code>client</code> or <code>server</code>
 
| Yes
 
|-
 
|'''''timestamp'''''
 
|Unix timestamp indicating when the update was made.
 
|10-digit (or less) number
 
|Yes
 
|-
 
|'''''success'''''
 
|Indicates if an updatable variable changed.
 
|<code>true</code> or <code>false</code>
 
|Only sent in response to Client.Variables.Set messages.
 
|-
 
|'''''value'''''
 
|The value of the variable.
 
|
 
| When '''''available''''' is <code>true</code>and a value exists.
 
|}
 
<syntaxhighlight lang="json">
 
Client.Variables.Update {
 
    "BOLD_IS_BRIGHT": {
 
        "available": true,
 
        "updatable": true,
 
        "requested": false,
 
        "source": "request",
 
        "timestamp": 1721495879,
 
        "value": 2
 
    },
 
    "CHARSET": {
 
        "available": true,
 
        "updatable": true,
 
        "requested": false,
 
        "source": "request",
 
        "timestamp": 1721495879,
 
        "value": "UTF-8"
 
    },
 
    "FONT": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    },
 
    "FONT_SIZE": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    },
 
    "LANGUAGE": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    },
 
    "SCREEN_READER": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    },
 
    "SYSTEMTYPE": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    },
 
    "USER": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    }
 
}
 
</syntaxhighlight>
 
 
=====Client.Variables.Set=====
 
'''Purpose''': The server sets one or more previously requested, updatable client variables. The client will synchronously respond with a Client.Variables.Update with a <code>source</code> attribute of <code>server</code>.
 
<syntaxhighlight lang="json">
 
// Client request with a valid and invalid value
 
Client.Variables.Set {
 
    "BOLD_IS_BRIGHT" : 1,
 
    "CHARSET" : "DEEP-6"
 
}
 
 
// Server response to a valid and invalid value
 
Client.Variables.Update {
 
    "BOLD_IS_BRIGHT": {
 
        "available": true,
 
        "updatable": true,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495900,
 
        "success": true,
 
        "value": 1
 
    },
 
    "CHARSET": {
 
        "available": true,
 
        "updatable": true,
 
        "requested": false,
 
        "source": "request",
 
        "timestamp": 1721495900,
 
        "success": false,
 
        "value": "DEEP-6"
 
    }
 
}
 
</syntaxhighlight>
 
===Implementation Considerations ===
 
 
*'''Client Support Advertisement''': Clients should advertise their support for the Client.Variables namespace using Core.Supports.Set.
 
*'''Server Acknowledgement''': Servers acknowledge support with Client.Variables.Default.
 
*'''Consent Management''': Clients must handle user consent for sharing sensitive variables. Prompts should inform users of requested data and allow them to opt-in or block requests.
 
*'''Blocked Variables''': Clients should not share a variable previously blocked by a user in Client.Variables.List messages, nor made available to other protocols, such as NEW-ENVIRON, MNES, MTTS.
 
*'''Variable Naming Convention''': Variables should be transferred in uppercase to maintain consistency and avoid issues with case sensitivity.
 
*'''Legacy Support''': Game drivers may not be able to send boolean values. Where boolean values are expected, clients will transform <code>"true"</code> or <code>1</code> to <code>true</code>, and <code>"false"</code> or <code>0</code> to <code>false</code>.
 
 
===Example Flow===
 
 
1. '''Client''': Should advertise support.
 
<syntaxhighlight lang="json">
 
Core.Supports.Set ["Client.Variables 1", ...]
 
</syntaxhighlight>
 
2. '''Server''': May acknowledge support.
 
<syntaxhighlight lang="json">
 
Client.Variables.Default {}
 
</syntaxhighlight>
 
3. '''Client''': Must send available variables list. Variables previously blocked by the user should not be sent.
 
<syntaxhighlight lang="json">
 
Client.Variables.List {
 
    "256_COLORS": {"available": true, "updatable": false},
 
    "ANSI": {"available": true, "updatable": false},
 
    "BOLD_IS_BRIGHT": {"available": true, "updatable": true},
 
    "CHARSET": {"available": true, "updatable": true},
 
    "CLIENT_NAME": {"available": true, "updatable": false},
 
    "CLIENT_VERSION": {"available": true, "updatable": false},
 
    "FONT": {"available": false, "updatable": false},
 
    "FONT_SIZE": {"available": false, "updatable": false},
 
    "LANGUAGE": {"available": false, "updatable": false},
 
    "MTTS": {"available": true, "updatable": false},
 
    "OSC_COLOR_PALETTE": {"available": true, "updatable": false},
 
    "SCREEN_READER": {"available": false, "updatable": false},
 
    "SYSTEMTYPE": {"available": false, "updatable": false},
 
    "TERMINAL_TYPE": {"available": true, "updatable": false},
 
    "TLS": {"available": true, "updatable": false},
 
    "TRUECOLOR": {"available": true, "updatable": false},
 
    "USER": {"available": false, "updatable": false},
 
    "UTF-8": {"available": true, "updatable": false},
 
    "VT100": {"available": true, "updatable": false},
 
    "WORD_WRAP": {"available": true, "updatable": false}
 
}
 
</syntaxhighlight>
 
4. '''Server''': May requests specific variables. Once per connected session, the client may prompt the user with a request to share variables that are <code>"available": false</code> from the Client.Variables.List message.<syntaxhighlight lang="json">
 
Client.Variables.Request ["BOLD_IS_BRIGHT", "CHARSET", "FONT", "FONT_SIZE", "LANGUAGE", "SCREEN_READER", "SYSTEMTYPE", "USER"]
 
</syntaxhighlight>
 
5. '''Client''': Updates requested variables.
 
<syntaxhighlight lang="json">
 
Client.Variables.Update {
 
    "BOLD_IS_BRIGHT": {
 
        "available": true,
 
        "updatable": true,
 
        "requested": false,
 
        "source": "request",
 
        "timestamp": 1721495879,
 
        "value": 2
 
    },
 
    "CHARSET": {
 
        "available": true,
 
        "updatable": true,
 
        "requested": false,
 
        "source": "request",
 
        "timestamp": 1721495879,
 
        "value": "UTF-8"
 
    },
 
    "FONT": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    },
 
    "FONT_SIZE": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    },
 
    "LANGUAGE": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    },
 
    "SCREEN_READER": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    },
 
    "SYSTEMTYPE": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    },
 
    "USER": {
 
        "available": false,
 
        "updatable": false,
 
        "requested": true,
 
        "source": "request",
 
        "timestamp": 1721495879
 
    }
 
}
 
</syntaxhighlight>
 
 
====Flow Diagrams====
 
 
======Requesting and Receiving Variables======
 
[[File:Flow1.png|alt=GMCP Client Variables Flow 1|frameless|600x600px]]
 
 
======Receiving Variable Updates ======
 
 
 
[[File:Flow2.png|alt=GMCP Client Variables Flow 2|frameless|600x600px]]
 
 
======Setting Updatable Variables======
 
 
 
[[File:Flow3.png|alt=GMCP Client Variables Flow 3|frameless|600x600px]]
 
 
===Conclusion===
 
The GMCP Client Variables Sharing extension standardizes the exchange of client-specific variables, ensuring seamless integration and enhanced user experiences. By adopting this standard, MUD developers can streamline variable management, improve client-server communication, and provide more personalized gaming experiences.
 
 
==Versions==
 
* Version 1.0: Initial specification.
 
 
==Authors==
 
*Mike Conley (Tamarindo, Administrator at StickMUD and Mudlet contributor) mike.conley[at]stickmud.com
 
 
===Notes ===
 
*This specification is subject to updates and community input. Contributions and feedback are welcome to ensure it meets the needs of the MUD community in the #mudlet-development channel of the Mudlet Discord.
 
*Implementation should follow GMCP protocol specifications, and all messages must be well-formatted JSON objects.
 

Latest revision as of 19:30, 7 September 2024