iOS native
How to integrate the iOS native plugin.
You can use this plugin for all ios games.
Connecting plugin to your project manually
To obtain the plugin please connect with us.
Link it manually to your project. To do that, go to your Target's General
tab in Xcode and under section "Frameworks, Libraries and Embedded Content
" press +
, then locate downloaded framework and add it. Don't forget to choose "embed & sign". Also, you will need to load and link manually https://github.com/SDWebImage/SDWebImageWebPCoder and it's dependencies too, because we use it internally. Once you finish, that's it!
Connecting plugin to your project using CocoaPods (recommended)
Add escs pod in Podfile
and then run pod update
And that's it! Now you are ready to use it
Removing unused targets
Because provided framework is a "fat framework" you may run into issues when uploading to Appstore because apple rejects simulator architectures in binaries. To remedy this issue, you need to add script action which will remove it upon build.
Under “Build Phases” select “Add Run Script” and copy the contents of below script
Integrating plugin into your game.
It is very easy to integrate ESCS plugin into your game code
First you need to initialize your plugin.
Initialization
To start using your plugin you need first initialize it:
where:
public_key
- a key that you've obtained in the step 1 of the integration guide, like"fee91a27-2b87-45f8-8ca4-0b317707806q"
base_url
- url for the core ESCS service. It is https://api.escs.io for production environmentplayer_base_url
- url for the player's ESCS service. It is https://player.escs.io for production environmentautoReconnect
- tells plugin whether you want to wait for network connection to become available if it isn't, or return with failed initialization immediately; default is true - i.e. plugin will try to initialize until network is availablecallback
- callback when init is completed; you can omit it.
Callback parameters are following:
status
- boolean: true for successfully initialized escs or false otherwisegameId
- gameId string of configured game or empty stringtournamentId
- tournamentId string of current active tournament or empty string
After this you need to attach this ViewController to your view hierarchy:
Start/End Game
After that you are all set and ready to use ESCS functionality. To start a game's round, just call startGameWithCallback
:
where
roundId
- roundId of just started game roundtournamentId
- tournamentId of active tournament for which the round was created forstatus
- round status. "active" for just created roundplayerId
- escs playerId
When the round of your game has ended, just call endGameWithScore
with score parameter:
where
result
- game score parameter - game score parameter - accepts a dictionary of string key and double value; the names of keys should be defined in game dashboard at client.escs.io
and callback:
roundId
- roundId of just ended game roundtournamentId
- tournamentId of active tournament for which the round was endedstatus
- round status. "ended" for just ended roundplayerId
- escs playerId
Optional steps
ESCS ready callback
When you get the callback from initialize, this means that plugin is ready to work and can show UI. But this does not mean that you can already use every ESCS feature, as some components require more time to hook up. Most of the time you don't need to worry about it, but in some cases it is not what you want (e.g. your game loads from deep link and you want to show tournament/wager inside ESCS, so you might want to disable your game UI until ESCS is able to show full info). To remedy this problem, we provide additional callback:
Receiving this callback means that ESCS is fully ready to receive and perform any supported actions.
Hiding ESCS button
Sending Game Progress
If you want send game score as your player progresses through game, for example in case gameplay is abruptly stopped or you want to see score progression graphs when players are streaming their gameplay, just call progressGame()
with score parameter:
where
progress
- game score parameter - game score parameter - accepts a dictionary of string key and double value; the names of keys should be defined in game dashboard at client.escs.io
and callback:
progressId
- id of just sent progress objectroundId
- roundId of just progressed game round
Hiding ESCS button
Most of the time you will not want to show the ESCS button during the actual game, to not mess with the gameplay, for example user can accidentally touch it and almost full-screen webview will show up. To hide or show button you can use following call:
Opening ESCS view programmatically
Sometimes you might prefer to implement you own customized button for opening Escs in style of your game and with full control of its position. For such cases you can hide Escs button altogether (like shown above) and open Escs with your own button using following method:
Notifications/Announcements
There are situations, when ESCS needs to show announcements or notifications - for example to promote your game's upcoming championship, or ask user to add credit card, because his/her trial is about to expire. ESCS will open its full WebView automatically to show notification's content, if it's needed. To be able to show these, not interrupting your gameplay and at the times that are not interruptive for user, please call:
There's internal logic in the plugin to decide whether it needs to show actual notification and announcement, but you should place these calls whenever you feel that interruption with ESCS WebView window is okay for user experience.
Please note that it does not mean that user will see notification or announcement every time you call these methods. We are trying for those to be as subtle and fluent as possible for end user. Their names imply that notification/announcement just maybe will be shown.
Changing default button position
There are situations when it is not suitable for your UI to have our ESCS button at default top center area. Then you can change that (remember, that user actually can drag the button anywhere on the screen he wants)
setButtonDefaultPositionAbsoluteWithX
will set button position in absolute coordinates from left upper corner of the app.
where
x - x coordinate (float)
y - y coordinate (float)
setButtonDefaultPositionRelativeWithXPart
will set button position in relative coordinates from center horizontally and top vertically of the app. That is, if you set 0, 0 coordinates the button will be shown in the x: (device width)/2 y: 0.
The coordinate system here is from -0.5 to 0.5 for xPart
: where -0.5 means most left side of device and 0.5 - right side and 0 is dead center. For yPart
it is from 0 to 1 where 0 is top of the screen and 1 is the bottom.
Getting in-game rewards
To receive the list of in-game rewards that particular player has (you can set those rewards as string fields in your game dashboard - for winning matches and so on) you can use the following method:
where:
count - amount of rewards player has (integer)
rewards - array of RewardPayloadObjC objects:
_id - id of reward (string)
rewardData - string representation of rewards (which you set in the dashboard)
tournamentId - id of tournamnt it was received by player (string)
Supporting video chat and streaming
In order to support escs video chat and streaming capabilities, you need to add two keys to Info.plist of your app, for user's prompts when requesting camera and mic recording:
Deeplink integration
Deeplink integration allows you to process ESCS-related deeplinks in your app. We provide wagers integration, and for them to work this step is required.
ESCS will generate deep links using provided url scheme and domain, i.e.: gamescheme://some/path/?escsplayer=%escs-specific-urlencoded-part%. This also could be your ios universal link. So when creating a link for tournaments/wagers inside your game, ESCS will just append the "?escsplayer=" parameter to the url you have entered in escs dev console in your app settings.
In the field you should enter something like gamescheme://some/path for simple deeplink or https://yourgame.com/some/path for universal link - where the some/path is any path inside your application that you can process. After this setup, you can use
method to pass the value of url parameter called "escsplayer" (%escs-specific-urlencoded-part% in the example above). You can provide it in urlencoded format, i.e. raw string that is passed in escsplayer param, escs will decode it correctly. How you extract the parameter value from the url is left to your game's implementation detail, but that should be fairly easy.
Note that still have to manually implement the iOS deeplink/universal link handling. Please refer to docs: https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app
This will trigger escs service to process that deeplink and automatically show relevant info in our overlay. If the user decides to take action with shown info, your game will receive the data about the match it needs to create using our standard APIs described in previous sections (i.e. OnGameSetStart and other relevant callbacks) and no additional implementation is required
Multiplayer
Overview
We support multiplayer games with different types of matches, matchmaking and so on. To be able to use this feature, you need to follow these steps:
Create multiplayer tournament in the game dashboard
Implement several callbacks in you game, which will be called in response to player's engagement with multiplayer tournament
Currently we provide 4 such callbacks:
OnGameSetStart callback - is called when a game set is started by escs backend. This is moment when you should start your game or create lobby and await for players to join it. What is a "set"? It's just one multiplayer game that several players are playing simultaneously. It can be real multiplayer (e.g. they, for example, race each other on track in a racing game or are participating in a deathmatch 1vs1 or 2vs2 and so on), or even "singleplayer", meaning that they all play their own singleplayer game (like solving puzzles and the one who solves it faster is the winner). In this callback you will receive information about players that are playing this set, teams that players are in (i.e. 2vs2 game), metadata that is supplied with the player (supplied by registerInGamePlayerId) and global metadata that is set in the game dashboard
OnGameSetEnd callback - is called when each player in the set has finished their game. this might be not necessary the same moment you end your multiplayer game - it is called when the escs backend processed all game end events from each participating player and saved their corresponding scores. You will receive matchId and setId as parameters
OnMatchStart callback - is called when multiplayer match has started. Usually you will get this event right before getting OnGameSetStart. Each match consists of several game sets. You will receive matchId as parameter of this callback.
OnMatchEnd callback - is called when multiplayer match has ended. That is when all the sets in the match has been played or timeout occurred. You will receive matchId as parameter of this callback
The following diagram may be helpful for understanding about aforementioned events:
To utilize these events you should call following methods after initializing escs service:
Registering in-game player id and metadata:
where:
playerId - your ingame player id (string). It will be passed along with OnGameSetStart callback when the game set will start
ingameMetadata - your ingame metadata for this player (string)
Register OnGameSetStart event callback
where:
setId - setId of started set (string)
tournamentId - tournamentId of the set (string)
matchId - matchId of the set (string)
roundId - roundId of the set (this is in fact id of the set "results") (string)
globalMetadata - metadata string that can be set in the game dashboard (string)
pariticipants - array of arrays of ParticipantObjC. Each sub-array is considered a "team". So if the game is 2vs2, then you will get array of 2 arrays, each having 2 objects inside. Those 2 arrays are 2 teams with 2 players each. In case of 1vs1 game, you will receive an array of 2 arrays, each having 1 object inside - thus the team contains only one player. ParticipantObjC object consists of:
playerId - escs player id (string)
ingamePlayerId - registered in-game player id via registerInGamePlayerId (string)
username - user's escs username (string)
firstName - user's escs first name (string)
lastName - user's escs last name (string)
avatar - user's escs avatar image url (string)
ingameMetadata - in-game metadata that was registered via registerInGamePlayerId (string)
setEndTimeUnix - latest end time of the set in unix time (NSInteger)
Register OnGameSetEnd event callback
where:
setId - setId of finished set (string)
matchId - matchId of the set (string)
Register OnMatchStart event callback
where matchId - is matchId of the match that started (string)
Register OnMatchEnd event callback
where matchId - is matchId of the match that ended (string)
Last updated