Skip to content

JavaryGames/GodotGameAnalytics

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GodotGameAnalytics

This is an implementation of the GameAnalytics Android SDK for the Godot Game Engine!

The module works only on Android and has been tested with Godot-2.1.2-stable.

Available Features

Design Event;

Progression Event;

Error Event;

Session Handling.

Build/Compile Module

  1. Copy the "GodotGameAnalytics" folder to the modules folder inside of Godot source code;
  2. Compile the Android Export Templates. [docs]

Configure GodotGameAnalytics

  1. Add the module in the engine.cfg:
[android]
modules="org/godotengine/godot/GodotGameAnalytics"
  1. On the project Export settings, load the Custom Package with the 'GodotGameAnalytics' compiled module templates.
  2. [optional] The mandatory permissions are already configured. Information about additional permissions, as well as their advantages and disadvantages can be found here and here.

Initialize GodotGameAnalytics

To use the module functions on your scripts, start the module as follows:

(You can Sign Up for free to get the keys).

var gameAnalytics

var gameKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
var secretKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

func _ready():
	if(Globals.has_singleton("GodotGameAnalytics")):
		gameAnalytics = Globals.get_singleton("GodotGameAnalytics")
		gameAnalytics.init(gameKey, secretKey)

And declare the functions you need:

func sendCustomEvent(stringHierarchy):
	if gameAnalytics:
		gameAnalytics.sendCustomEvent(stringHierarchy)

(You can learn more about Singletons and initializations here).

Then call the function wherever you need, following the reference below:

API Reference

The following functions are available:

Startup Function

void init(String appId, String appSignature)

Design Event

void sendCustomEvent(String stringHierarchy)

The stringHierarchy is a String that can consist of 1-5 segments separated by ':'.
Each segment can have a max length of 32.
Eg: "Kill:Sword:Robot"

Design Event With Float Value

void sendCustomEventWithFloat(String stringHierarchy, float value)

Same as above, but now you can pass a float value within the event.

More information about Design Events can be found here.


Progression Event Start

void progressionStart_1(String progression01)
void progressionStart_2(String progression01, String progression02)
void progressionStart_3(String progression01, String progression02, String progression03)

Use this when a player initiates an attempt to progress the game. The functions give you the option to use from 1 to 3 parameters that represent the beginning of the progression in your game.

Progression Event Fail

void progressionFail_1(String progression01)
void progressionFail_2(String progression01, String progression02)
void progressionFail_3(String progression01, String progression02, String progression03)
void progressionFail_3_WithInt(String progression01, String progression02, String progression03, int score)

Use this when the player fails the attempt to progress. When using a three-tier structure you have the option to use a function of Strings only or a function composed of Strings and an integer value (to represent a score, for example).

Progression Event Complete

void progressionComplete_1(String progression01)
void progressionComplete_2(String progression01, String progression02)
void progressionComplete_3(String progression01, String progression02, String progression03)
void progressionComplete_3_WithInt(String progression01, String progression02, String progression03, int score)

Use this when the player succeeds the attempt to progress. When using a three-tier structure you have the option to use a function of Strings only or a function composed of Strings and an integer value, as in the case above.

More information about Progression Events can be found here.


Resource Event

addResourceEventWithFlowType_source(String currency, float amount, String itemType, String itemId)
addResourceEventWithFlowType_sink(String currency, float amount, String itemType, String itemId)

Resource events are used to register the flow of your in-game economy (virtual currencies) – the sink (subtract) and the source (add) for each virtual currency. More information

Business Event

addBusinessEventWithCurrency(String currency, int amount, String itemType, String itemId, String cartType, String receipt, String signature)

Business events are used to track (and validate) real-money transactions. More information

Reports With Level Severity

void sendReportDebug(String debugMessage)
void sendReportInfo(String infoMessage)
void sendReportWarning(String warningMessage)
void sendReportError(String errorMessage)
void sendReportCriticalError(String criticalErrorMessage)

You can use these events to send errors, critical errors, general infos, debug messages or warnings generated by your players’ in-game behaviour.

More information about Error Events can be found here.


Manual Session Handling

void manualSessionHandling(bool enable)

Ads will most likely interfere with the session length of the game. To prevent this you need to use manual session handling at least when you are about to show ads. So, If you're using modules for ads set this to true right before calling an ad and set back to false when return from ad.


Start Session And End Session

void startSession()
void endSession()

If you decide to keep manual session handling enabled, you can use these functions to control when sessions begin and end (init method will always start a session automatically).

About

GameAnalytics Module for the Godot Game Engine

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 93.9%
  • Python 6.1%