Beispiel #1
0
 public static function run($id, $attribs = array())
 {
     $response = GameRocket_Http::post('/games/' . GameRocket_Configuration::apikey() . '/actions/' . $id . '/run', $attribs);
     if (isset($response['error'])) {
         return new GameRocket_Result_Error($response);
     } else {
         return new GameRocket_Result_Successful(GameRocket_Map::factory($response));
     }
 }
Beispiel #2
0
<?php

require_once __DIR__ . '/../vendor/autoload.php';
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
GameRocket_Configuration::environment('production');
GameRocket_Configuration::apikey('16a9d25c079f46b29d1e7e2193ae7ae0');
GameRocket_Configuration::secretkey('41b12432741b4f028ed39cc23afab8d4');
$app = new Silex\Application();
$app->get('/', function () {
    include 'views/form.php';
    return '';
});
$app->post('/create_player', function (Request $request) {
    $result = GameRocket_Player::create(array('name' => $request->get('name'), 'locale' => $request->get('locale')));
    if ($result->success) {
        // Create the customer in your database with a field which contains Player ID for next calls
        return new Response("<h1>Success! Anasazi Player ID: " . $result->player->id . "</h1>", 200);
    } else {
        return new Response("<h1>Error: " . $result->message . "</h1>", 200);
    }
});
$app->run();
return $app;
Beispiel #3
0
 public static function create($attribs = array())
 {
     GameRocket_Util::verifyKeys(self::createSignature(), $attribs);
     return self::_doCreate('/games/' . GameRocket_Configuration::apikey() . '/players', $attribs);
 }