mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
1433 lines
57 KiB
JavaScript
1433 lines
57 KiB
JavaScript
//@ts-check
|
||
/// <reference path="../JsExtensionTypes.d.ts" />
|
||
/**
|
||
* This is a declaration of an extension for GDevelop 5.
|
||
*
|
||
* ℹ️ Changes in this file are watched and automatically imported if the editor
|
||
* is running. You can also manually run `node import-GDJS-Runtime.js` (in newIDE/app/scripts).
|
||
*
|
||
* The file must be named "JsExtension.js", otherwise GDevelop won't load it.
|
||
* ⚠️ If you make a change and the extension is not loaded, open the developer console
|
||
* and search for any errors.
|
||
*
|
||
* More information on https://github.com/4ian/GDevelop/blob/master/newIDE/README-extensions.md
|
||
*/
|
||
|
||
/** @type {ExtensionModule} */
|
||
module.exports = {
|
||
createExtension: function (_, gd) {
|
||
const extension = new gd.PlatformExtension();
|
||
extension
|
||
.setExtensionInformation(
|
||
'Multiplayer',
|
||
_('Multiplayer'),
|
||
_(
|
||
'This allows players to join online lobbies and synchronize gameplay across devices without needing to manage servers or networking.\n\nUse the "Open game lobbies" action to let players join a game, and use conditions like "Lobby game has just started" to begin gameplay. Add the "Multiplayer object" behavior to game objects that should be synchronized, and assign or change their ownership using player numbers. Variables and game state (like scenes, scores, or timers) are automatically synced by the host, with options to change ownership or disable sync when needed. Common multiplayer logic —like handling joins/leaves, collisions, and host migration— is supported out-of-the-box for up to 8 players per game.'
|
||
),
|
||
'Florian Rival',
|
||
'Open source (MIT License)'
|
||
)
|
||
.setExtensionHelpPath('/all-features/multiplayer')
|
||
.setCategory('Players');
|
||
extension
|
||
.addInstructionOrExpressionGroupMetadata(_('Multiplayer'))
|
||
.setIcon('JsPlatform/Extensions/multiplayer.svg');
|
||
|
||
extension
|
||
.addDependency()
|
||
.setName('Safari View Controller Cordova plugin')
|
||
.setDependencyType('cordova')
|
||
.setExportName('@gdevelop/cordova-plugin-safariviewcontroller');
|
||
|
||
extension
|
||
.addStrExpression(
|
||
'CurrentLobbyID',
|
||
_('Current lobby ID'),
|
||
_('Returns current lobby ID.'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.getLobbyID');
|
||
|
||
extension
|
||
.addAction(
|
||
'QuickJoinWithLobbyID',
|
||
_('Join a specific lobby by its ID'),
|
||
_(
|
||
'Join a specific lobby. The player will join the game instantly if this is possible.'
|
||
),
|
||
_('Join a specific lobby by its ID _PARAM1_'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.addParameter('string', _('Lobby ID'), '', false)
|
||
.addParameter(
|
||
'yesorno',
|
||
_('Display loader while joining a lobby.'),
|
||
'',
|
||
true
|
||
)
|
||
.setDefaultValue('yes')
|
||
.addParameter(
|
||
'yesorno',
|
||
_('Display game lobbies if unable to join a specific one.'),
|
||
'',
|
||
true
|
||
)
|
||
.setDefaultValue('yes')
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.authenticateAndQuickJoinWithLobbyID');
|
||
|
||
extension
|
||
.addAction(
|
||
'QuickJoinLobby',
|
||
_('Join the next available lobby'),
|
||
_(
|
||
'Join the next available lobby. The player will join the game instantly if this is possible.'
|
||
),
|
||
_('Join the next available lobby'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.addParameter(
|
||
'yesorno',
|
||
_('Display loader while searching for a lobby.'),
|
||
'',
|
||
true
|
||
)
|
||
.setDefaultValue('yes')
|
||
.addParameter(
|
||
'yesorno',
|
||
_('Display game lobbies if no lobby can be joined directly.'),
|
||
'',
|
||
true
|
||
)
|
||
.setDefaultValue('yes')
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.authenticateAndQuickJoinLobby');
|
||
|
||
extension
|
||
.addCondition(
|
||
'IsSearchingForLobbyToJoin',
|
||
_('Is searching for a lobby to join'),
|
||
_('Is searching for a lobby to join.'),
|
||
_('Is searching for a lobby to join'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.isSearchingForLobbyToJoin');
|
||
|
||
extension
|
||
.addCondition(
|
||
'QuickJoinJustFailed',
|
||
_('Quick join failed to join a lobby'),
|
||
_('Quick join failed to join a lobby.'),
|
||
_('Quick join failed to join a lobby'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.hasQuickJoinJustFailed');
|
||
|
||
extension
|
||
.addStrExpression(
|
||
'QuickJoinFailureReason',
|
||
_('Quick join action failure reason'),
|
||
_(
|
||
"Returns the reason why the Quick join action failed. It can either be 'FULL' if all lobbies were occupied, 'NOT_ENOUGH_PLAYERS' if the lobby's configuration requires more than 1 player to start the game and no other players were available. It can also take the value 'UNKNOWN'."
|
||
),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.getQuickJoinFailureReason');
|
||
|
||
extension
|
||
.addAction(
|
||
'OpenGameLobbies',
|
||
_('Open Game Lobbies'),
|
||
_(
|
||
'Open the game lobbies window, where players can join lobbies or see the one they are in.'
|
||
),
|
||
_('Open the game lobbies'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.openLobbiesWindow');
|
||
|
||
extension
|
||
.addAction(
|
||
'ShowLobbiesWindowCloseAction',
|
||
_('Allow players to close the lobbies window'),
|
||
_('Allow players to close the lobbies window. Allowed by default.'),
|
||
_('Allow players to close the lobbies window: _PARAM1_'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.addParameter('yesorno', _('Show close button'), '', false)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.showLobbiesCloseButton');
|
||
|
||
extension
|
||
.addAction(
|
||
'EndLobbyGame',
|
||
_('End Lobby Game'),
|
||
_(
|
||
'End the lobby game. This will trigger the "Lobby game has just ended" condition.'
|
||
),
|
||
_('End the lobby game'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.endLobbyGame');
|
||
|
||
extension
|
||
.addAction(
|
||
'LeaveGameLobby',
|
||
_('Leave Game Lobby'),
|
||
_(
|
||
'Leave the current game lobby. This will trigger the "Player has left" condition on the other players, and the "Lobby game has ended" condition on the player leaving.'
|
||
),
|
||
_('Leave the game lobby'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.leaveGameLobby');
|
||
|
||
extension
|
||
.addAction(
|
||
'SendMessage',
|
||
_('Send custom message to other players'),
|
||
_(
|
||
"Send a custom message to other players in the lobby, with an automatic retry system if it hasn't been received. Use with the condition 'Message has been received' to know when the message has been properly processed by the host."
|
||
),
|
||
_('Send message _PARAM0_ to other players with content _PARAM1_'),
|
||
_('Advanced'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.addParameter('string', _('Message name'), '', false)
|
||
.addParameter('string', _('Message content'), '', false)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayerMessageManager.sendCustomMessage');
|
||
|
||
extension
|
||
.addAction(
|
||
'SendVariableMessage',
|
||
_('Send custom message to other players with a variable'),
|
||
_(
|
||
"Send a custom message to other players in the lobby containing a variable, with an automatic retry system if it hasn't been received. Use with the condition 'Message has been received' to know when the message has been properly processed by the host."
|
||
),
|
||
_('Send message _PARAM0_ to other players with variable _PARAM1_'),
|
||
_('Advanced'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.addParameter('string', _('Message name'), '', false)
|
||
.addParameter('variable', _('Variable'), '', false)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName(
|
||
'gdjs.multiplayerMessageManager.sendVariableCustomMessage'
|
||
);
|
||
|
||
extension
|
||
.addAction(
|
||
'GetMessageVariable',
|
||
_('Get message variable'),
|
||
_(
|
||
"Store the data of the specified message in a variable. Use with the condition 'Message has been received' to know when the message has been properly processed by the host."
|
||
),
|
||
_('Save message _PARAM0_ data in _PARAM1_'),
|
||
_('Advanced'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.addParameter('string', _('Message name'), '', false)
|
||
.addParameter('variable', _('Variable'), '', false)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName(
|
||
'gdjs.multiplayerMessageManager.getVariableCustomMessageData'
|
||
);
|
||
|
||
extension
|
||
.addCondition(
|
||
'IsLobbiesWindowOpen',
|
||
_('Lobbies window is open'),
|
||
_('Check if the lobbies window is open.'),
|
||
_('Lobbies window is open'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.isLobbiesWindowOpen');
|
||
|
||
extension
|
||
.addCondition(
|
||
'HasLobbyGameJustStarted',
|
||
_('Lobby game has just started'),
|
||
_('Check if the lobby game has just started.'),
|
||
_('Lobby game has started'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.hasLobbyGameJustStarted');
|
||
|
||
extension
|
||
.addCondition(
|
||
'IsLobbyGameRunning',
|
||
_('Lobby game is running'),
|
||
_('Check if the lobby game is running.'),
|
||
_('Lobby game is running'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.isLobbyGameRunning');
|
||
|
||
extension
|
||
.addCondition(
|
||
'HasLobbyGameJustEnded',
|
||
_('Lobby game has just ended'),
|
||
_('Check if the lobby game has just ended.'),
|
||
_('Lobby game has ended'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.hasLobbyGameJustEnded');
|
||
|
||
extension
|
||
.addCondition(
|
||
'HasMessageBeenReceived',
|
||
_('Custom message has been received from another player'),
|
||
_(
|
||
'Check if a custom message has been received from another player. Will be true only for one frame.'
|
||
),
|
||
_('Message _PARAM0_ has been received'),
|
||
_('Advanced'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter('string', _('Message name'), '', false)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName(
|
||
'gdjs.multiplayerMessageManager.hasCustomMessageBeenReceived'
|
||
);
|
||
|
||
extension
|
||
.addExpressionAndConditionAndAction(
|
||
'number',
|
||
'ObjectsSynchronizationRate',
|
||
_('Objects synchronization rate'),
|
||
_(
|
||
'objects synchronization rate (between 1 and 60, default is 30 times per second)'
|
||
),
|
||
_('objects synchronization rate'),
|
||
_('Advanced'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.useStandardParameters(
|
||
'number',
|
||
gd.ParameterOptions.makeNewOptions().setDescription(_('Sync rate'))
|
||
)
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.setObjectsSynchronizationRate')
|
||
.setGetter('gdjs.multiplayer.getObjectsSynchronizationRate');
|
||
|
||
extension
|
||
.addCondition(
|
||
'IsPlayerHost',
|
||
_('Player is host'),
|
||
_('Check if the player is the host. (Player 1 is the host)'),
|
||
_('Player is host'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.isCurrentPlayerHost');
|
||
|
||
extension
|
||
.addCondition(
|
||
'HasAnyPlayerLeft',
|
||
_('Any player has left'),
|
||
_('Check if any player has left the lobby game.'),
|
||
_('Any player has left'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayerMessageManager.hasAnyPlayerJustLeft');
|
||
|
||
extension
|
||
.addCondition(
|
||
'HasPlayerLeft',
|
||
_('Player has left'),
|
||
_('Check if the player has left the lobby game.'),
|
||
_('Player _PARAM0_ has left'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.addParameter('number', _('Player number'), '', false)
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayerMessageManager.hasPlayerJustLeft');
|
||
|
||
extension
|
||
.addExpression(
|
||
'LastLeftPlayerNumber',
|
||
_('Player number that just left'),
|
||
_(
|
||
'Returns the player number of the player that has just left the lobby.'
|
||
),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName(
|
||
'gdjs.multiplayerMessageManager.getLatestPlayerWhoJustLeft'
|
||
);
|
||
|
||
extension
|
||
.addCondition(
|
||
'HasAnyPlayerJoined',
|
||
_('Any player has joined'),
|
||
_('Check if any player has joined the lobby.'),
|
||
_('Any player has joined'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayerMessageManager.hasAnyPlayerJustJoined');
|
||
|
||
extension
|
||
.addCondition(
|
||
'HasPlayerJoined',
|
||
_('Player has joined'),
|
||
_('Check if the player has joined the lobby.'),
|
||
_('Player _PARAM0_ has joined'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.addParameter('number', _('Player number'), '', false)
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayerMessageManager.hasPlayerJustJoined');
|
||
|
||
extension
|
||
.addExpression(
|
||
'LastJoinedPlayerNumber',
|
||
_('Player number that just joined'),
|
||
_(
|
||
'Returns the player number of the player that has just joined the lobby.'
|
||
),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName(
|
||
'gdjs.multiplayerMessageManager.getLatestPlayerWhoJustJoined'
|
||
);
|
||
|
||
extension
|
||
.addCondition(
|
||
'IsMigratingHost',
|
||
_('Host is migrating'),
|
||
_(
|
||
'Check if the host is migrating, in order to adapt the game state (like pausing the game).'
|
||
),
|
||
_('Host is migrating'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.isMigratingHost');
|
||
|
||
extension
|
||
.addAction(
|
||
'EndLobbyWhenHostLeaves',
|
||
_('Configure lobby game to end when host leaves'),
|
||
_(
|
||
'Configure the lobby game to end when the host leaves. This will trigger the "Lobby game has just ended" condition. (Default behavior is to migrate the host)'
|
||
),
|
||
_('Configure lobby game to end when host leaves'),
|
||
_('Advanced'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter('yesorno', _('End lobby game when host leaves'), '', false)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.endLobbyWhenHostLeaves');
|
||
|
||
extension
|
||
.addStrExpression(
|
||
'MessageData',
|
||
_('Message data'),
|
||
_(
|
||
'Returns the data received when the specified message was received from another player.'
|
||
),
|
||
_('Advanced'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter('string', _('Message name'), '', false)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayerMessageManager.getCustomMessageData');
|
||
|
||
extension
|
||
.addExpression(
|
||
'MessageSender',
|
||
_('Message sender'),
|
||
_('Returns the player number of the sender of the specified message.'),
|
||
_('Advanced'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter('string', _('Message name'), '', false)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayerMessageManager.getCustomMessageSender');
|
||
|
||
extension
|
||
.addExpressionAndCondition(
|
||
'number',
|
||
'PlayersInLobbyCount',
|
||
_('Number of players in lobby'),
|
||
_('the number of players in the lobby'),
|
||
_('the number of players in the lobby'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.useStandardParameters('number', gd.ParameterOptions.makeNewOptions())
|
||
.setFunctionName('gdjs.multiplayer.getPlayersInLobbyCount');
|
||
|
||
extension
|
||
.addCondition(
|
||
'IsPlayerConnected',
|
||
_('Player is connected'),
|
||
_('Check if the specified player is connected to the lobby.'),
|
||
_('Player _PARAM0_ is connected'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter(
|
||
'number',
|
||
_('The position of the player in the lobby (1, 2, ...)'),
|
||
'',
|
||
false
|
||
)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.isPlayerConnected');
|
||
|
||
extension
|
||
.addExpressionAndCondition(
|
||
'number',
|
||
'CurrentPlayerNumber',
|
||
_('Current player number in lobby'),
|
||
_('the current player number in the lobby (1, 2, ...)'),
|
||
_('the current player number in the lobby'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.useStandardParameters('number', gd.ParameterOptions.makeNewOptions())
|
||
.setFunctionName('gdjs.multiplayer.getCurrentPlayerNumber');
|
||
|
||
extension
|
||
.addStrExpression(
|
||
'PlayerUsername',
|
||
_('Player username in lobby'),
|
||
_('Get the username of the player in the lobby.'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter(
|
||
'number',
|
||
_('The position of the player in the lobby (1, 2, ...)'),
|
||
'',
|
||
false
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.getPlayerUsername');
|
||
|
||
extension
|
||
.addStrExpression(
|
||
'CurrentPlayerUsername',
|
||
_('Current player username in lobby'),
|
||
_('Get the username of the current player in the lobby.'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayer.getCurrentPlayerUsername');
|
||
|
||
extension
|
||
.addExpression(
|
||
'PlayerPing',
|
||
_('Player ping in lobby'),
|
||
_('Get the ping of the player in the lobby.'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter(
|
||
'number',
|
||
_('The position of the player in the lobby (1, 2, ...)'),
|
||
'',
|
||
false
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayerMessageManager.getPlayerPing');
|
||
|
||
extension
|
||
.addExpression(
|
||
'CurrentPlayerPing',
|
||
_('Current player ping in lobby'),
|
||
_('Get the ping of the current player in the lobby.'),
|
||
_('Lobbies'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayercomponents.js')
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName('gdjs.multiplayerMessageManager.getCurrentPlayerPing');
|
||
|
||
extension
|
||
.addExpressionAndConditionAndAction(
|
||
'number',
|
||
'PlayerVariableOwnership',
|
||
_('Player variable ownership'),
|
||
_('the player owning the variable'),
|
||
_('the player owning the variable _PARAM1_'),
|
||
_('Variables'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.addParameter('variable', _('Variable'), '', false)
|
||
.setParameterLongDescription(
|
||
_(
|
||
'Only root variables can change ownership. Arrays and structures children are synchronized with their parent.'
|
||
)
|
||
)
|
||
.useStandardParameters(
|
||
'number',
|
||
gd.ParameterOptions.makeNewOptions().setDescription(_('Player number'))
|
||
)
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName(
|
||
'gdjs.multiplayerVariablesManager.setPlayerVariableOwnership'
|
||
)
|
||
.setGetter('gdjs.multiplayerVariablesManager.getPlayerVariableOwnership');
|
||
|
||
extension
|
||
.addAction(
|
||
'TakeVariableOwnership',
|
||
_('Take ownership of variable'),
|
||
_(
|
||
'Take the ownership of the variable. It will then be synchronized to other players, with the current player as the owner.'
|
||
),
|
||
_('Take ownership of _PARAM1_'),
|
||
_('Variables'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.addParameter('variable', _('Variable'), '', false)
|
||
.setParameterLongDescription(
|
||
_(
|
||
'Only root variables can change ownership. Arrays and structures children are synchronized with their parent.'
|
||
)
|
||
)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName(
|
||
'gdjs.multiplayerVariablesManager.takeVariableOwnership'
|
||
);
|
||
|
||
extension
|
||
.addAction(
|
||
'RemoveVariableOwnership',
|
||
_('Remove ownership of variable'),
|
||
_(
|
||
'Remove the ownership of the variable. It will still be synchronized to other players, but the host owns it.'
|
||
),
|
||
_('Remove ownership of _PARAM1_'),
|
||
_('Variables'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.addParameter('variable', _('Variable'), '', false)
|
||
.setParameterLongDescription(
|
||
_(
|
||
'Only root variables can change ownership. Arrays and structures children are synchronized with their parent.'
|
||
)
|
||
)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName(
|
||
'gdjs.multiplayerVariablesManager.removeVariableOwnership'
|
||
);
|
||
|
||
extension
|
||
.addAction(
|
||
'DisableVariableSynchronization',
|
||
_('Disable variable synchronization'),
|
||
_(
|
||
'Disable synchronization of the variable over the network. It will not be sent to other players anymore.'
|
||
),
|
||
_('Disable synchronization of _PARAM1_'),
|
||
_('Variables'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addCodeOnlyParameter('currentScene', '')
|
||
.addParameter('variable', _('Variable'), '', false)
|
||
.setHelpPath('/all-features/multiplayer')
|
||
.getCodeExtraInformation()
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.setFunctionName(
|
||
'gdjs.multiplayerVariablesManager.disableVariableSynchronization'
|
||
);
|
||
|
||
// Multiplayer object behavior
|
||
const multiplayerObjectBehavior = new gd.BehaviorJsImplementation();
|
||
|
||
multiplayerObjectBehavior.updateProperty = function (
|
||
behaviorContent,
|
||
propertyName,
|
||
newValue
|
||
) {
|
||
if (propertyName === 'actionOnPlayerDisconnect') {
|
||
behaviorContent
|
||
.getChild('actionOnPlayerDisconnect')
|
||
.setStringValue(newValue);
|
||
return true;
|
||
}
|
||
if (propertyName === 'playerNumber') {
|
||
const numberValue = newValue === 'Host' ? 0 : parseInt(newValue, 10);
|
||
behaviorContent.getChild('playerNumber').setIntValue(numberValue);
|
||
return true;
|
||
}
|
||
|
||
return false;
|
||
};
|
||
|
||
multiplayerObjectBehavior.getProperties = function (behaviorContent) {
|
||
const behaviorProperties = new gd.MapStringPropertyDescriptor();
|
||
|
||
const playerNumberNumberValue = behaviorContent
|
||
.getChild('playerNumber')
|
||
.getIntValue();
|
||
const playerNumberStringValue =
|
||
playerNumberNumberValue === 0 ? 'Host' : `${playerNumberNumberValue}`;
|
||
|
||
behaviorProperties
|
||
.getOrCreate('playerNumber')
|
||
.setValue(playerNumberStringValue)
|
||
.setType('Choice')
|
||
.setLabel(_('Player owning the object'))
|
||
.setDescription(
|
||
_(
|
||
'Who is synchronizing the object to the players. If this is an object controlled by a player, then assign the player number. Otherwise just leave "Host" and the host of the game will synchronize the object to the players. (Note: you can change the ownership of the object during the game with corresponding actions).'
|
||
)
|
||
)
|
||
.addExtraInfo('Host')
|
||
.addExtraInfo('1')
|
||
.addExtraInfo('2')
|
||
.addExtraInfo('3')
|
||
.addExtraInfo('4')
|
||
.addExtraInfo('5')
|
||
.addExtraInfo('6')
|
||
.addExtraInfo('7')
|
||
.addExtraInfo('8');
|
||
|
||
behaviorProperties
|
||
.getOrCreate('actionOnPlayerDisconnect')
|
||
.setValue(
|
||
behaviorContent.getChild('actionOnPlayerDisconnect').getStringValue()
|
||
)
|
||
.setType('Choice')
|
||
.setLabel(_('Action when player disconnects'))
|
||
.setAdvanced(true)
|
||
.addExtraInfo('DestroyObject')
|
||
.addExtraInfo('GiveOwnershipToHost')
|
||
.addExtraInfo('DoNothing');
|
||
|
||
return behaviorProperties;
|
||
};
|
||
|
||
multiplayerObjectBehavior.initializeContent = function (behaviorContent) {
|
||
behaviorContent.addChild('playerNumber').setIntValue(0);
|
||
behaviorContent
|
||
.addChild('actionOnPlayerDisconnect')
|
||
.setStringValue('DestroyObject');
|
||
};
|
||
|
||
const sharedData = new gd.BehaviorsSharedData();
|
||
|
||
const behavior = extension
|
||
.addBehavior(
|
||
'MultiplayerObjectBehavior',
|
||
_('Multiplayer object'),
|
||
'MultiplayerObject',
|
||
_(
|
||
'Allow the object to be synchronized with other players in the lobby.'
|
||
),
|
||
'',
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'MultiplayerObjectBehavior',
|
||
// @ts-ignore - TODO: Fix multiplayerBehavior being a BehaviorJsImplementation instead of an Behavior
|
||
multiplayerObjectBehavior,
|
||
sharedData
|
||
)
|
||
.setQuickCustomizationVisibility(gd.QuickCustomization.Hidden)
|
||
.setIncludeFile('Extensions/Multiplayer/peer.js')
|
||
.addIncludeFile('Extensions/Multiplayer/peerJsHelper.js')
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationcomponents.js'
|
||
)
|
||
.addIncludeFile(
|
||
'Extensions/PlayerAuthentication/playerauthenticationtools.js'
|
||
)
|
||
.addIncludeFile('Extensions/Multiplayer/messageManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayerVariablesManager.js')
|
||
.addIncludeFile('Extensions/Multiplayer/multiplayertools.js')
|
||
.addIncludeFile(
|
||
'Extensions/Multiplayer/multiplayerobjectruntimebehavior.js'
|
||
);
|
||
|
||
behavior
|
||
.addExpressionAndConditionAndAction(
|
||
'number',
|
||
'PlayerObjectOwnership',
|
||
_('Player object ownership'),
|
||
_('the player owning the object'),
|
||
_('the player owning the instance'),
|
||
_('Multiplayer'),
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter('object', _('Object'), '', false)
|
||
.addParameter('behavior', _('Behavior'), 'MultiplayerObjectBehavior')
|
||
.useStandardParameters(
|
||
'number',
|
||
gd.ParameterOptions.makeNewOptions().setDescription(_('Player number'))
|
||
)
|
||
.markAsAdvanced()
|
||
.setFunctionName('setPlayerObjectOwnership')
|
||
.setGetter('getPlayerObjectOwnership');
|
||
|
||
behavior
|
||
.addScopedCondition(
|
||
'IsObjectOwnedByCurrentPlayer',
|
||
_('Is object owned by current player'),
|
||
_(
|
||
'Check if the object is owned by the current player, as a player or the host.'
|
||
),
|
||
_('Object _PARAM0_ is owned by current player'),
|
||
_('Multiplayer'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter('object', _('Object'), '', false)
|
||
.addParameter(
|
||
'behavior',
|
||
_('Behavior'),
|
||
'MultiplayerObjectBehavior',
|
||
false
|
||
)
|
||
.markAsAdvanced()
|
||
.setFunctionName('isObjectOwnedByCurrentPlayer');
|
||
|
||
behavior
|
||
.addScopedAction(
|
||
'TakeObjectOwnership',
|
||
_('Take ownership of object'),
|
||
_(
|
||
'Take the ownership of the object. It will then be synchronized to other players, with the current player as the owner.'
|
||
),
|
||
_('Take ownership of _PARAM0_'),
|
||
_('Multiplayer'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter('object', _('Object'), '', false)
|
||
.addParameter(
|
||
'behavior',
|
||
_('Behavior'),
|
||
'MultiplayerObjectBehavior',
|
||
false
|
||
)
|
||
.markAsAdvanced()
|
||
.setFunctionName('takeObjectOwnership');
|
||
|
||
behavior
|
||
.addScopedAction(
|
||
'RemoveObjectOwnership',
|
||
_('Remove object ownership'),
|
||
_(
|
||
'Remove the ownership of the object from the player. It will still be synchronized to other players, but the host owns it.'
|
||
),
|
||
_('Remove ownership of _PARAM0_'),
|
||
_('Multiplayer'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter('object', _('Object'), '', false)
|
||
.addParameter(
|
||
'behavior',
|
||
_('Behavior'),
|
||
'MultiplayerObjectBehavior',
|
||
false
|
||
)
|
||
.markAsAdvanced()
|
||
.setFunctionName('removeObjectOwnership');
|
||
|
||
behavior
|
||
.addScopedAction(
|
||
'EnableBehaviorSynchronization',
|
||
_('Enable (or disable) the synchronization of a behavior'),
|
||
_(
|
||
"Enable or disable the synchronization of a behavior over the network. If disabled, the behavior's current state will not be sent to other players anymore."
|
||
),
|
||
_('Enable synchronization of _PARAM2_ for _PARAM0_: _PARAM3_'),
|
||
_('Multiplayer'),
|
||
'JsPlatform/Extensions/multiplayer.svg',
|
||
'JsPlatform/Extensions/multiplayer.svg'
|
||
)
|
||
.addParameter('object', _('Object'), '', false)
|
||
.addParameter(
|
||
'behavior',
|
||
_('Multiplayer behavior'),
|
||
'MultiplayerObjectBehavior',
|
||
false
|
||
)
|
||
.addParameter('behavior', _('Object behavior'), '', false)
|
||
.addParameter('yesorno', _('Enable synchronization'), '', false)
|
||
.markAsAdvanced()
|
||
.setFunctionName('enableBehaviorSynchronization');
|
||
|
||
return extension;
|
||
},
|
||
runExtensionSanityTests: function (gd, extension) {
|
||
return [];
|
||
},
|
||
};
|