void RetrieveSampleDictionary() { OKCloud.Get("keyDict", (object obj, OKCloudException err) => { OKLog.Info("In get dictionary handler! Obj is of class: " + obj.GetType().Name); Dictionary <string, object> dict = (Dictionary <string, object>)obj; if (err == null) { OKLog.Info("Object for property1:\nclass: " + dict["prop1"].GetType().Name + "\nvalue: " + dict["prop1"]); OKLog.Info("Object for property2:\nclass: " + dict["prop2"].GetType().Name + "\nvalue: " + dict["prop2"]); OKLog.Info("Object for property3:\nclass: " + dict["prop3"].GetType().Name); ArrayList arr = (ArrayList)dict["prop3"]; OKLog.Info("Elements of array:"); OKLog.Info("Element 0, class: " + arr[0].GetType().Name + " value: " + arr[0]); OKLog.Info("Element 1, class: " + arr[1].GetType().Name + " value: " + arr[1]); } else { OKLog.Info("Error fetching dictionary: " + err); } }); }
void OnGUI() { ///Scale the button sizes for retina displays float screenScale = (float)(Screen.width / 480.0); Matrix4x4 scaledMatrix = Matrix4x4.Scale(new Vector3(screenScale, screenScale, screenScale)); GUI.matrix = scaledMatrix; if (GUI.Button(new Rect(30, 10, 400, 100), "Show Leaderboards & Achievements")) { // Show leaderboards. // If the user is not logged into OpenKit, the login UI // will be shown ontop of the leaderboards OKManager.ShowLeaderboards(); } if (GUI.Button(new Rect(30, 120, 400, 100), "Show Login UI")) { // Show the OpenKit Login UI OKManager.ShowLoginToOpenKit(); } if (GUI.Button(new Rect(30, 230, 400, 100), "Submit Score to Level 3 Leaderboard")) { #if !UNITY_EDITOR // Submit a score to a leaderboard, with a value of 2134 to leaderboard ID 4 // If the user is not logged in, the score will not be submitted successfully string scoreString = "" + DateTime.Now.Month; scoreString += DateTime.Now.Day; scoreString += DateTime.Now.Hour; scoreString += DateTime.Now.Minute; long scoreValue = long.Parse(scoreString); OKScore score = new OKScore(scoreValue, 4); // Set the displayString to include the units of the score score.displayString = score.scoreValue + " points"; // Store some metadata in the score-- this is not used by OpenKit but is stored and returned with each score score.metadata = 1; score.submitScore(scoreSubmitHandler); #endif } if (GUI.Button(new Rect(30, 340, 400, 100), "Unlock Achievement")) { //Unlock achievement by setting its progress for the current user // to 5. The achievement ID is pulled from the OpenKit dashboard, // and we know that the target goal of the achievement is also 5 which is set in the dashboard, // so this unlocks the achievement OKAchievementScore achievementScore = new OKAchievementScore(5, 3); achievementScore.submitAchievementScore(achievementScoreSubmitHandler); } if (GUI.Button(new Rect(30, 450, 400, 100), "Store dictionary")) { //Store a dictionary ArrayList y = new ArrayList(); y.Add("First element."); y.Add("Second!"); Dictionary <string, object> x = new Dictionary <string, object>(); x.Add("prop1", "YEAAAAAAH BUDDY."); x.Add("prop2", 99); x.Add("prop3", y); // Cloud store. OKCloud.Set(x, "aKey", delegate(object obj, OKCloudException err) { if (err == null) { OKLog.Info("Stored object of type: " + obj.GetType().Name); } else { OKLog.Info("Error during store: " + err); } }); } if (GUI.Button(new Rect(30, 560, 400, 100), "Retrieve dictionary")) { //Retrieve the dictionary OKCloud.Get("aKey", delegate(JSONObject obj, OKCloudException err) { if (err == null) { OKLog.Info("Retrieved object of type: " + obj.GetType().Name); OKLog.Info("Obj: " + obj); OKLog.Info("Can I get an element of an Array? " + obj.GetField("prop3")[1]); } else { OKLog.Info("Error during store: " + err); } }); } }