Skip to content

thirdkindgames/SDKGenerator

 
 

Repository files navigation

PlayFab SDK Generator README

1. Overview:

This is a node.js based program that takes a json description of the PlayFab API and uses it to generate out all the different SDKs that must be kept up to date. This project also contains the sources for all PlayFab SDKs on all platforms. If you want to make a change in an SDK, this is where the change has to go.

2. Prerequisites:

  1. Any recent MS-Windows Operating System
  2. You must have Node.js installed: http://nodejs.org/
  • The location of node.exe must be in your PATH environment variable. Default: C:\Program Files (x86)\nodejs\
  • Highly suggested that you install Node.js tools for Visual Studio: https://beta.visualstudio.com/vs/node-js/
  1. SdkGenerator requires several PlayFab repositories, cloned to your local machine, as sibiling folders to SdkGenerator.
  • <parent-folder>/SdkGenerator = https://github.com/PlayFab/SDKGenerator (you're looking at it)
  • <parent-folder>/sdks/<targetSDK> - For every sdk you want to generate, you should git-clone the PlayFab repository for that target into the "sdks" subfolder first. In many cases, there are required files in the repo which are not generated
  1. SdkGenerator can be configured to read from other PlayFab repositories, cloned to your local machine, as sibiling folders to SdkGenerator.

3. Usage Instructions:

If you have installed Node.js tools, then you can build any existing SDK from the Visual Studio solution: https://github.com/PlayFab/SDKGenerator/blob/master/SDKGenerator.sln

  • Open the solution
  • Set the Project Configuration to match the sdk you wish to build
  • Build -> Build Solution

There are many prebuilt scripts which can build each SDK automatically: https://github.com/PlayFab/SDKGenerator/tree/master/SDKBuildScripts

  • Find the script that matches the SDK you wish to build (EX unity_build.bat)
  • Double-click that file If you wish to build an new sdk, you may need to build a new .bat file using the instrucitons below.

Finally, to manually invoke the generator, open a command line at the root of the project and type:

node generate.js
    <targetName>=<targetOutputPath>
    -(apiSpecPath|apiSpecGitUrl|apiSpecPfUrl)[ (<apiSpecPath>|<apiSpecGitUrl>|<apiSpecPfUrl>)]
    [ -flags <flag>[ <flag> ...]]

You must supply a list of targets to generate, and the directory to generate them to. Each target takes the form:

<targetName>=<targetOutputLocation>

Where <targetName> is one of the supported SDK targets, and <targetOutputLocation> is a path to a directory to generate the SDK in. Note: Make sure there are no spaces between he arguments and the equals sign. Additional

API-Spec Location:

  • You must define exactly one location to read Api-Spec information
    • -apiSpecPath []
      • If the "-apiSpecPath" switch is defined without a path, this defaults to "C:/depot/API_Specs" (absolute path)
      • This is the absolute or relative directory to the optional API_Specs repo in the prerequisites (required for this option)
    • -apiSpecGitUrl []
    • -apiSpecPfUrl []

Flags are optional, and can be used to generate console apis.

Example:

node generate.js unity-v2=../sdks/UnitySDK

Note: Older command line options may work, such as:

  • node generate.js ..\API_Specs unity-v2=../sdks/UnitySDK
  • node generate.js C:\depot\API_Specs unity-v2=../sdks/UnitySDK However, if your API_Specs path was different, you may have to convert your old arguments from:
  • node generate.js unity-v2=../sdks/UnitySDK
    • to:
  • node generate.js unity-v2=../sdks/UnitySDK -apiSpecPath

4. Building a new SDK

Setting up a new target in the SdkGenerator is fairly simple. This example has been added to the SdkGenerator for reference: https://github.com/PlayFab/SDKGenerator/tree/master/targets/newTarget

  • Add a new subfolder in SdkGenerator/Targets
  • Add a "make.js" file to your new target
    • Implement makeClientAPI, makeServerAPI, and/or makeCombinedAPI in the file, as shown in the NewTarget Example
    • Optionally, you may use template files and source files, as described in the NewTarget example.
  • Add a new bat-file to generate your sdk in SdkGenerator/SDKBuildScripts

PlayFab somtimes accepts submissions for new SDKs. This process is extensive, and it has to be integrated with our automated build and testing system. For more information contact us on the forums.

5. Troubleshooting:

For a complete list of available APIs, check out the online documentation.

Contact Us

We love to hear from our developer community! Do you have ideas on how we can make our products and services better?

Our Developer Success Team can assist with answering any questions as well as process any feedback you have about PlayFab services.

Forums, Support and Knowledge Base

6. Copyright and Licensing Information:

Apache License -- Version 2.0, January 2004 http://www.apache.org/licenses/ Full details available within the LICENSE file.

About

Source for all auto-generated SDKs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 56.0%
  • HTML 11.8%
  • C++ 10.4%
  • JavaScript 9.7%
  • TypeScript 2.7%
  • ActionScript 2.2%
  • Other 7.2%