Cocos2d-x C++ Client Guide #
The official C++ client handles all communication in real-time with the server. It implements all features in the server and is written with C++11.
The Cocos2d-x C++ client is open source on GitHub. Please report issues and contribute code to help us improve it.
Download #
The client SDK can be downloaded from the GitHub releases. You can download “nakama-cocos2d-x-sdk_$version.zip”.
For upgrades you can see changes and enhancements in the CHANGELOG before you update to newer versions.
Setup #
When you’ve downloaded the Nakama Cocos2d archive and extracted it to NAKAMA_COCOS2D_SDK
folder, you should include it in your project.
We don’t recommend to copy Nakama Cocos2d SDK to your project because it’s quite big in size (~600 Mb).
Copy NakamaCocos2d folder #
Copy NakamaCocos2d
folder from NAKAMA_COCOS2D_SDK
to your Classes
folder.
Setup for Mac and iOS projects #
- Add
NAKAMA_COCOS2D_SDK/include
inBuild Settings > Header Search Paths
- Add libs folder in
Build Settings > Library Search Paths
:NAKAMA_COCOS2D_SDK/libs/ios
- for iOSNAKAMA_COCOS2D_SDK/libs/mac
- for Mac
- Add all
.a
files located in libs folder toGeneral > Frameworks, Libraries, and Embedded Content
- Add
NAKAMA_COCOS2D_SDK/NakamaCocos2d
folder to your XCode project as group (not a reference).
Setup for Android projects #
If you use CMake
then see Setup for CMake projects section.
If you use ndk-build
then add following to your Android.mk
file:
|
|
Android uses a permissions system which determines which platform services the application will request to use and ask permission for from the user. The client uses the network to communicate with the server so you must add the “INTERNET” permission.
|
|
Setup for CMake projects #
Open for edit your CMakeLists.txt
file and find following existing code:
|
|
add next code before:
|
|
At bottom of your CMakeLists.txt
file add following:
|
|
Setup for Visual Studio projects #
In Project Settings
add following:
- Add
NAKAMA_COCOS2D_SDK/include
toC/C++ > General > Additional Include Directories
- Add folder to
Linker > General > Additional Library Directories
:NAKAMA_COCOS2D_SDK/libs/win32/v140
- for VS 2015 x86NAKAMA_COCOS2D_SDK/libs/win64/v140
- for VS 2015 x64NAKAMA_COCOS2D_SDK/libs/win32/v141
- for VS 2017 x86NAKAMA_COCOS2D_SDK/libs/win64/v141
- for VS 2017 x64NAKAMA_COCOS2D_SDK/libs/win32/v142
- for VS 2019 x86NAKAMA_COCOS2D_SDK/libs/win64/v142
- for VS 2019 x64
- Add all
.lib
files located in above folder toLinker > Input > Additional Dependencies
- Add sources from
Classes/NakamaCocos2d
to your Visual Studio project.
Usage #
Include nakama helper header.
|
|
Initialize logger with debug logging level.
|
|
The client object is used to execute all logic against the server.
|
|
Tick #
The tick
method pumps requests queue and executes callbacks in your thread. You must call it periodically (recommended every 50ms) in your thread.
|
|
Without this the default client and real-time client will not work, and you will not receive responses from the server.
Authenticate #
With a client object you can authenticate against the server. You can register or login a user with one of the authenticate options.
To authenticate you should follow our recommended pattern in your client code:
- Build an instance of the client:
|
|
- Authenticate a user. By default Nakama will try and create a user if it doesn’t exist:
|
|
It is good practice to cache a device identifier when authenticating on Android because they can change with device OS updates.
In the code above we use authenticateDevice()
but for other authentication options have a look at the code examples.
Sessions #
When authenticated the server responds with an auth token (JWT) which contains useful properties and gets deserialized into a NSession
object.
|
|
It is recommended to store the auth token from the session and check at startup if it has expired. If the token has expired you must reauthenticate. The expiry time of the token can be changed as a setting in the server.
A full example class with all code above is here.
Send requests #
When a user has been authenticated a session is used to connect with the server. You can then send messages for all the different features in the server.
This could be to add friends, join groups, or submit scores in leaderboards. You can also execute remote code on the server via RPC.
All requests are sent with a session object which authorizes the client.
|
|
Have a look at other sections of documentation for more code examples.
Real-time client #
The client can create one or more real-time clients. Each real-time client can have it’s own event listener registered for responses received from the server.
The socket is exposed on a different port on the server to the client. You’ll need to specify a different port here to ensure that connection is established successfully.
|
|
Don’t forget to call tick
method. See Tick section for details.
You can use real-time client to send and receive chat messages, get notifications, and matchmake into a multiplayer match. You can also execute remote code on the server via RPC.
To join a chat channel and receive messages:
|
|
There are more examples for chat channels here.
Handle events #
A real-time client has event handlers which are called on various messages received from the server.
|
|
Event handlers only need to be implemented for the features you want to use.
Callbacks | Description |
---|---|
onDisconnect | Received when the client is disconnected from the server. |
onNotification | Receives live in-app notifications sent from the server. |
onChannelMessage | Receives real-time chat messages sent by other users. |
onChannelPresence | Receives join and leave events within chat. |
onMatchState | Receives real-time multiplayer match data. |
onMatchPresence | Receives join and leave events within real-time multiplayer. |
onMatchmakerMatched | Received when the matchmaker has found a suitable match. |
onStatusPresence | Receives status updates when subscribed to a user status feed. |
onStreamPresence | Receives stream join and leave event. |
onStreamState | Receives stream data sent by the server. |
Logging #
Client logging is off by default.
To enable logs output to console with debug logging level:
|
|
Errors #
The server and the client can generate logs which are helpful to debug code.
To enable client logs see Logging section.
In every request in the client you can set error callback. It will be called when request fails. The callback has NError
structure which contains details of the error:
|
|
The client writes all errors to logger so you don’t need to do this.
Full Cocos2d-x C++ example #
You can find the Cocos2d-x C++ example here.
Client reference #
You can find the C++ Client Reference here.