Пример #1
0
        public static void Initialize()
        {
            if (_Discord != null)
            {
                return;
            }

            try
            {
                _Discord = new Discord.Discord(721934748825550931L, (ulong)Discord.CreateFlags.NoRequireDiscord);

                _Discord.SetLogHook(Discord.LogLevel.Debug, (logLevel, message) =>
                {
                    switch (logLevel)
                    {
                    case Discord.LogLevel.Debug:
                        Mod.Logger.Debug(message);
                        break;

                    case Discord.LogLevel.Info:
                        Mod.Logger.Info(message);
                        break;

                    case Discord.LogLevel.Warn:
                        Mod.Logger.Warn(message);
                        break;

                    case Discord.LogLevel.Error:
                        Mod.Logger.Error(message);
                        break;
                    }
                });

                _Discord.GetUserManager().OnCurrentUserUpdate += () =>
                {
                    Mod.Logger.Debug($"Connected to Discord for Rich Presence.");
                };
            }
            catch { }
        }
Пример #2
0
        static bool InitDiscord()
        {
            try
            {
                discord = new Discord.Discord(Int64.Parse(clientID), (UInt64)Discord.CreateFlags.NoRequireDiscord);
            }catch (Exception e)
            {
                if (e.GetType() == typeof(Discord.ResultException))
                {
                    return(false);
                }
                return(false);
            }
            discord.SetLogHook(Discord.LogLevel.Debug, (level, message) =>
            {
                Debug.Log("Log[" + level + "] " + message);
            });

            var applicationManager = discord.GetApplicationManager();

            applicationManager.GetOAuth2Token((Discord.Result result, ref Discord.OAuth2Token oauth2Token) =>
            {
                Debug.Log("Access Token " + oauth2Token.AccessToken);
            });

            var userManager = discord.GetUserManager();

            userManager.OnCurrentUserUpdate += () =>
            {
                Debug.Log("----------------------------Discord Rich Presence---------------------------");
                var currentUser = userManager.GetCurrentUser();
                Debug.Log("Username: \"" + currentUser.Username + "\", Id: \"" + currentUser.Id + "\"");
                Debug.Log("-------------------------------------------------------------------------------");
            };

            UpdateActivity();
            isRunning = true;

            return(true);
        }
Пример #3
0
        public override void Entry(IModHelper helper)
        {
#if DEBUG
            this.Monitor.Log($"HEY!!! You shouldn't be seeing this!", LogLevel.Alert);
            this.Monitor.Log($"Unless you're Tortellini... then maybe this should be here", LogLevel.Alert);
            this.Monitor.Log($"IF YOURE NOT TORTELLINI THEN YELL AT HIM TO BUILD IN RELEASE MODE", LogLevel.Alert);
#endif
            starttime = CurrentTime();
            var discord = new Discord.Discord(824160913908039729, (UInt64)Discord.CreateFlags.NoRequireDiscord);
            modcount = helper.ModRegistry.GetAll().Count();
            var Activity = new Discord.Activity
            {
                ApplicationId = 824160913908039729,
                Name          = "DewCord Rich Presence",
                State         = $"In a Menu",
                Details       = $"Living the Valley Life",
                Timestamps    =
                {
                    Start = starttime,
                },
                Assets =
                {
                    LargeImage = "title_card",
                    LargeText  = $"Stardew Valley v{Game1.version}",
                    SmallImage = "placeholder",
                    SmallText  = $"Running {modcount} mods",
                },
                Party =
                {
                    Id   = "foo",
                    Size =
                    {
                        CurrentSize =     1,
                        MaxSize     =     1,
                    }
                },

                Secrets =
                {
                    Match    = "bar",
                    Join     = "baz",
                    Spectate = "foobar",
                },
                Instance = true,
            };
            acc = Activity;
            var userManager        = discord.GetUserManager();
            var imageManager       = discord.GetImageManager();
            var lobbyManager       = discord.GetLobbyManager();
            var applicationManager = discord.GetApplicationManager();
            userManager.OnCurrentUserUpdate += () =>
            {
                var currentUser = userManager.GetCurrentUser();
                this.Monitor.Log($"Discord User: {currentUser.Username}#{currentUser.Discriminator}", LogLevel.Debug);
                Update(null, null, discord, Activity);
                //this.Monitor.Log($"Discriminator: {currentUser.Discriminator}", LogLevel.Debug);
                //this.Monitor.Log($"ID: {currentUser.Id}", LogLevel.Debug);
            };

            helper.Events.GameLoop.DayStarted      += this.NewDay;
            helper.Events.GameLoop.UpdateTicked    += (sender, e) => this.Update(sender, e, discord, Activity);
            helper.Events.GameLoop.ReturnedToTitle += (sender, e) => this.TimesUp(sender, e, discord, Activity);
        }
Пример #4
0
        public void Load(ILua lua, bool is_serverside, ModuleAssemblyLoadContext assembly_context)
        {
            lua.PushSpecial(SPECIAL_TABLES.SPECIAL_GLOB);
            lua.GetField(-1, "print");
            lua.PushString("Hello World RPC");
            lua.MCall(1, 0);
            lua.Pop();

            int DiscordRPC_update_callbacks(ILua lua)
            {
                lua.PushSpecial(SPECIAL_TABLES.SPECIAL_GLOB);
                lua.GetField(-1, "print");
                lua.PushString("It Works!");
                lua.MCall(1, 0);
                lua.Pop();

                lua.PushSpecial(SPECIAL_TABLES.SPECIAL_GLOB);
                lua.GetField(-1, "game");
                lua.GetField(-1, "GetMap");
                lua.MCall(0, 1);
                map = lua.GetString(-1);
                lua.Pop();

                lua.PushSpecial(SPECIAL_TABLES.SPECIAL_GLOB);
                lua.GetField(-1, "game");
                lua.GetField(-1, "SinglePlayer");
                lua.MCall(0, 1);
                bool IsSinglePlayer = lua.GetBool(-1);

                lua.Pop();

                lua.PushSpecial(SPECIAL_TABLES.SPECIAL_GLOB);
                lua.GetField(-1, "engine");
                lua.GetField(-1, "ActiveGamemode");
                lua.MCall(0, 1);
                gamemode = lua.GetString(-1);
                lua.Pop();

                if (IsSinglePlayer)
                {
                    activityDetails = "SinglePlayer";
                }
                else
                {
                    lua.PushSpecial(SPECIAL_TABLES.SPECIAL_GLOB);
                    lua.GetField(-1, "player");
                    lua.GetField(-1, "GetCount");
                    lua.MCall(0, 1);
                    int players = (int)lua.GetNumber(-1);
                    lua.Pop();

                    lua.PushSpecial(SPECIAL_TABLES.SPECIAL_GLOB);
                    lua.GetField(-1, "game");
                    lua.GetField(-1, "MaxPlayers");
                    lua.MCall(0, 1);
                    int maxPlayers = (int)lua.GetNumber(-1);
                    lua.Pop();

                    activityDetails = $"{players}/{maxPlayers}";
                }

                /*if (!is_serverside)
                 * {
                 *  lua.PushSpecial(SPECIAL_TABLES.SPECIAL_GLOB);
                 *  lua.GetField(-1, "LocalPlayer"); //team.GetScore(ply:Team())
                 *  lua.MCall(0, 1);
                 *
                 *  lua.GetField(-1, "Team");
                 *  lua.Push(-2);
                 *  lua.MCall(0, 1);
                 *  double team = lua.GetNumber(-1);
                 *  lua.Pop();
                 *
                 *  lua.PushSpecial(SPECIAL_TABLES.SPECIAL_GLOB);
                 *  lua.GetField(-1, "teams");
                 *  lua.GetField(-1, "GetScore");
                 *  lua.PushNumber(team);
                 *  lua.MCall(1, 1);
                 *  score = (int)lua.GetNumber(-1);
                 *  lua.Pop();
                 * }*/


                UpdateActivity();
                return(0);
            };

            lua.PushSpecial(SPECIAL_TABLES.SPECIAL_GLOB);
            lua.PushManagedFunction(DiscordRPC_update_callbacks);
            lua.SetField(-2, "DiscordRPC_update_activity");
            lua.Pop(1);


            discord = new Discord.Discord(client_ID, (UInt64)Discord.CreateFlags.Default);
            discord.SetLogHook(Discord.LogLevel.Debug, (level, message) =>
            {
                Console.WriteLine("Log[{0}] {1}", level, message);
            });

            var applicationManager = discord.GetApplicationManager();

            // Get the current locale. This can be used to determine what text or audio the user wants.
            Console.WriteLine("Current Locale: {0}", applicationManager.GetCurrentLocale());
            // Get the current branch. For example alpha or beta.
            Console.WriteLine("Current Branch: {0}", applicationManager.GetCurrentBranch());
            // If you want to verify information from your game's server then you can
            // grab the access token and send it to your server.
            //
            // This automatically looks for an environment variable passed by the Discord client,
            // if it does not exist the Discord client will focus itself for manual authorization.
            //
            // By-default the SDK grants the identify and rpc scopes.
            // Read more at https://discordapp.com/developers/docs/topics/oauth2
            // applicationManager.GetOAuth2Token((Discord.Result result, ref Discord.OAuth2Token oauth2Token) =>
            // {
            //     Console.WriteLine("Access Token {0}", oauth2Token.AccessToken);
            // });

            var activityManager = discord.GetActivityManager();
            var lobbyManager    = discord.GetLobbyManager();

            // Received when someone accepts a request to join or invite.
            // Use secrets to receive back the information needed to add the user to the group/party/match
            activityManager.OnActivityJoin += secret =>
            {
                Console.WriteLine("OnJoin {0}", secret);
                lobbyManager.ConnectLobbyWithActivitySecret(secret, (Discord.Result result, ref Discord.Lobby lobby) =>
                {
                    Console.WriteLine("Connected to lobby: {0}", lobby.Id);
                    lobbyManager.ConnectNetwork(lobby.Id);
                    lobbyManager.OpenNetworkChannel(lobby.Id, 0, true);
                    foreach (var user in lobbyManager.GetMemberUsers(lobby.Id))
                    {
                        lobbyManager.SendNetworkMessage(lobby.Id, user.Id, 0,
                                                        Encoding.UTF8.GetBytes(String.Format("Hello, {0}!", user.Username)));
                    }
                    UpdateActivity();
                });
            };
            // Received when someone accepts a request to spectate
            activityManager.OnActivitySpectate += secret =>
            {
                Console.WriteLine("OnSpectate {0}", secret);
            };
            // A join request has been received. Render the request on the UI.
            activityManager.OnActivityJoinRequest += (ref Discord.User user) =>
            {
                Console.WriteLine("OnJoinRequest {0} {1}", user.Id, user.Username);
            };
            // An invite has been received. Consider rendering the user / activity on the UI.
            activityManager.OnActivityInvite += (Discord.ActivityActionType Type, ref Discord.User user, ref Discord.Activity activity2) =>
            {
                Console.WriteLine("OnInvite {0} {1} {2}", Type, user.Username, activity2.Name);
                // activityManager.AcceptInvite(user.Id, result =>
                // {
                //     Console.WriteLine("AcceptInvite {0}", result);
                // });
            };
            // This is used to register the game in the registry such that Discord can find it.
            // This is only needed by games acquired from other platforms, like Steam.
            // activityManager.RegisterCommand();

            var imageManager = discord.GetImageManager();

            var userManager = discord.GetUserManager();


            lobbyManager.OnLobbyMessage += (lobbyID, userID, data) =>
            {
                Console.WriteLine("lobby message: {0} {1}", lobbyID, Encoding.UTF8.GetString(data));
            };
            lobbyManager.OnNetworkMessage += (lobbyId, userId, channelId, data) =>
            {
                Console.WriteLine("network message: {0} {1} {2} {3}", lobbyId, userId, channelId, Encoding.UTF8.GetString(data));
            };
            lobbyManager.OnSpeaking += (lobbyID, userID, speaking) =>
            {
                Console.WriteLine("lobby speaking: {0} {1} {2}", lobbyID, userID, speaking);
            };

            UpdateActivity();


            /*
             * var overlayManager = discord.GetOverlayManager();
             * overlayManager.OnOverlayLocked += locked =>
             * {
             *  Console.WriteLine("Overlay Locked: {0}", locked);
             * };
             * overlayManager.SetLocked(false);
             */

            var storageManager = discord.GetStorageManager();
            var contents       = new byte[20000];
            var random         = new Random();

            random.NextBytes(contents);
            Console.WriteLine("storage path: {0}", storageManager.GetPath());
            storageManager.WriteAsync("foo", contents, res =>
            {
                var files = storageManager.Files();
                foreach (var file in files)
                {
                    Console.WriteLine("file: {0} size: {1} last_modified: {2}", file.Filename, file.Size, file.LastModified);
                }
                storageManager.ReadAsyncPartial("foo", 400, 50, (result, data) =>
                {
                    Console.WriteLine("partial contents of foo match {0}", Enumerable.SequenceEqual(data, new ArraySegment <byte>(contents, 400, 50)));
                });
                storageManager.ReadAsync("foo", (result, data) =>
                {
                    Console.WriteLine("length of contents {0} data {1}", contents.Length, data.Length);
                    Console.WriteLine("contents of foo match {0}", Enumerable.SequenceEqual(data, contents));
                    Console.WriteLine("foo exists? {0}", storageManager.Exists("foo"));
                    storageManager.Delete("foo");
                    Console.WriteLine("post-delete foo exists? {0}", storageManager.Exists("foo"));
                });
            });

            var storeManager = discord.GetStoreManager();

            storeManager.OnEntitlementCreate += (ref Discord.Entitlement entitlement) =>
            {
                Console.WriteLine("Entitlement Create1: {0}", entitlement.Id);
            };

            // Start a purchase flow.
            // storeManager.StartPurchase(487507201519255552, result =>
            // {
            //     if (result == Discord.Result.Ok)
            //     {
            //         Console.WriteLine("Purchase Complete");
            //     }
            //     else
            //     {
            //         Console.WriteLine("Purchase Canceled");
            //     }
            // });

            // Get all entitlements.
            storeManager.FetchEntitlements(result =>
            {
                if (result == Discord.Result.Ok)
                {
                    foreach (var entitlement in storeManager.GetEntitlements())
                    {
                        Console.WriteLine("entitlement: {0} - {1} {2}", entitlement.Id, entitlement.Type, entitlement.SkuId);
                    }
                }
            });

            // Get all SKUs.
            storeManager.FetchSkus(result =>
            {
                if (result == Discord.Result.Ok)
                {
                    foreach (var sku in storeManager.GetSkus())
                    {
                        Console.WriteLine("sku: {0} - {1} {2}", sku.Name, sku.Price.Amount, sku.Price.Currency);
                    }
                }
            });
            updater = new Thread(UpdaterThread);
            updater.Start();
        }
Пример #5
0
        public override void OnStart(OnStartProperties onStartProperties)
        {
            base.OnStart(onStartProperties);
            discord = new Discord.Discord(DISCORD_CLIENT_ID, (UInt64)Discord.CreateFlags.Default);
            discord.SetLogHook(Discord.LogLevel.Debug, (level, message) => {
                // Console.WriteLine("Log[{0}] {1}", level, message);
            });
            DontDestroyOnLoad(this);
            applicationManager = discord.GetApplicationManager();
            //Console.WriteLine("Current Locale: {0}", applicationManager.GetCurrentLocale());
            // Get the current branch. For example alpha or beta.
            //Console.WriteLine("Current Branch: {0}", applicationManager.GetCurrentBranch());
            var activityManager = discord.GetActivityManager();

            LobbyManager = discord.GetLobbyManager();
            activityManager.OnActivityJoin += secret => {
                //Console.WriteLine("OnJoin {0}", secret);
                LobbyManager.ConnectLobbyWithActivitySecret(secret, (Discord.Result result, ref Discord.Lobby lobby) => {
                    //Console.WriteLine("Connected to lobby: {0}", lobby.Id);
                    LobbyManager.ConnectNetwork(lobby.Id);
                    LobbyManager.OpenNetworkChannel(lobby.Id, 0, true);
                    foreach (var user in LobbyManager.GetMemberUsers(lobby.Id))
                    {
                        LobbyManager.SendNetworkMessage(lobby.Id, user.Id, 0,
                                                        Encoding.UTF8.GetBytes(string.Format("Hello, {0}!", user.Username)));
                    }
                    UpdateActivity(discord, lobby);
                });
            };
            // Received when someone accepts a request to spectate
            activityManager.OnActivitySpectate += secret => {
                //Console.WriteLine("OnSpectate {0}", secret);
            };
            // A join request has been received. Render the request on the UI.
            activityManager.OnActivityJoinRequest += (ref Discord.User user) => {
                //Console.WriteLine("OnJoinRequest {0} {1}", user.Id, user.Username);
            };
            // An invite has been received. Consider rendering the user / activity on the UI.
            activityManager.OnActivityInvite += (Discord.ActivityActionType Type, ref Discord.User user, ref Discord.Activity activity2) => {
                //Console.WriteLine("OnInvite {0} {1} {2}", Type, user.Username, activity2.Name);
                // activityManager.AcceptInvite(user.Id, result =>
                // {
                //     Console.WriteLine("AcceptInvite {0}", result);
                // });
            };
            // This is used to register the game in the registry such that Discord can find it.
            // This is only needed by games acquired from other platforms, like Steam.
            // activityManager.RegisterCommand();

            var imageManager = discord.GetImageManager();

            var userManager = discord.GetUserManager();

            // The auth manager fires events as information about the current user changes.
            // This event will fire once on init.
            //
            // GetCurrentUser will error until this fires once.
            userManager.OnCurrentUserUpdate += () => {
                var currentUser = userManager.GetCurrentUser();
                //Console.WriteLine(currentUser.Username);
                //Console.WriteLine(currentUser.Id);
            };
            // If you store Discord user ids in a central place like a leaderboard and want to render them.
            // The users manager can be used to fetch arbitrary Discord users. This only provides basic
            // information and does not automatically update like relationships.
            userManager.GetUser(450795363658366976, (Discord.Result result, ref Discord.User user) => {
                if (result == Discord.Result.Ok)
                {
                    //Console.WriteLine("user fetched: {0}", user.Username);

                    // Request users's avatar data.
                    // This can only be done after a user is successfully fetched.
                    FetchAvatar(imageManager, user.Id);
                }
                else
                {
                    //Console.WriteLine("user fetch error: {0}", result);
                }
            });

            var relationshipManager = discord.GetRelationshipManager();

            // It is important to assign this handle right away to get the initial relationships refresh.
            // This callback will only be fired when the whole list is initially loaded or was reset
            relationshipManager.OnRefresh += () => {
                // Filter a user's relationship list to be just friends
                relationshipManager.Filter((ref Discord.Relationship relationship) => { return(relationship.Type == Discord.RelationshipType.Friend); });
                // Loop over all friends a user has.
                //Console.WriteLine("relationships updated: {0}", relationshipManager.Count());
                for (uint i = 0; i < Math.Min(relationshipManager.Count(), 10); i++)
                {
                    // Get an individual relationship from the list
                    var r = relationshipManager.GetAt(i);
                    //Console.WriteLine("relationships: {0} {1} {2} {3}", r.Type, r.User.Username, r.Presence.Status, r.Presence.Activity.Name);

                    // Request relationship's avatar data.
                    FetchAvatar(imageManager, r.User.Id);
                }
            };
            // All following relationship updates are delivered individually.
            // These are fired when a user gets a new friend, removes a friend, or a relationship's presence changes.

            /*
             * relationshipManager.OnRelationshipUpdate += (ref Discord.Relationship r) => {
             *  Console.WriteLine("relationship updated: {0} {1} {2} {3}", r.Type, r.User.Username, r.Presence.Status, r.Presence.Activity.Name);
             * };
             */

            LobbyManager.OnLobbyMessage += (lobbyID, userID, data) => {
                Console.WriteLine("lobby message: ", lobbyID, data.Length);
            };

            LobbyManager.OnNetworkMessage += (long lobbyId, long userId, byte channelId, byte[] data) => {
            };

            /*
             * lobbyManager.OnSpeaking += (lobbyID, userID, speaking) => {
             *  Console.WriteLine("lobby speaking: {0} {1} {2}", lobbyID, userID, speaking);
             * };
             */
            // Create a lobby.
            var transaction = LobbyManager.GetLobbyCreateTransaction();

            transaction.SetCapacity(20);
            transaction.SetType(Discord.LobbyType.Public);
            transaction.SetMetadata("a", "123");
            transaction.SetMetadata("a", "456");
            transaction.SetMetadata("b", "111");
            transaction.SetMetadata("c", "222");

            LobbyManager.CreateLobby(transaction, (Discord.Result result, ref Discord.Lobby lobby) => {
                if (result != Discord.Result.Ok)
                {
                    return;
                }
                var _lobby = lobby;
                newLobbyListener.ForEach(x => x(_lobby));

                // Print all the members of the lobby.
                foreach (var user in LobbyManager.GetMemberUsers(lobby.Id))
                {
                    //Console.WriteLine("lobby member: {0}", user.Username);
                }

                // Update lobby.
                var lobbyTransaction = LobbyManager.GetLobbyUpdateTransaction(lobby.Id);
                lobbyTransaction.SetMetadata("d", "e");
                lobbyTransaction.SetCapacity(16);
                LobbyManager.UpdateLobby(lobby.Id, lobbyTransaction, (_) => {
                    //Console.WriteLine("lobby has been updated");
                });

                // Update a member.
                var lobbyID           = lobby.Id;
                var userID            = lobby.OwnerId;
                var memberTransaction = LobbyManager.GetMemberUpdateTransaction(lobbyID, userID);
                memberTransaction.SetMetadata("hello", "there");
                LobbyManager.UpdateMember(lobbyID, userID, memberTransaction, (_) => {
                    //Console.WriteLine("lobby member has been updated: {0}", lobbyManager.GetMemberMetadataValue(lobbyID, userID, "hello"));
                });

                // Search lobbies.
                var query = LobbyManager.GetSearchQuery();
                // Filter by a metadata value.
                query.Filter("metadata.a", Discord.LobbySearchComparison.GreaterThan, Discord.LobbySearchCast.Number, "455");
                query.Sort("metadata.a", Discord.LobbySearchCast.Number, "0");
                // Only return 1 result max.
                query.Limit(1);
                LobbyManager.Search(query, (_) => {
                    //Console.WriteLine("search returned {0} lobbies", lobbyManager.LobbyCount());
                    if (LobbyManager.LobbyCount() == 1)
                    {
                        //Console.WriteLine("first lobby secret: {0}", lobbyManager.GetLobby(lobbyManager.GetLobbyId(0)).Secret);
                    }
                });

                // Connect to voice chat.
                LobbyManager.ConnectVoice(lobby.Id, (_) => {
                    //Console.WriteLine("Connected to voice chat!");
                });

                // Setup networking.
                LobbyManager.ConnectNetwork(lobby.Id);
                LobbyManager.OpenNetworkChannel(lobby.Id, 0, true);

                // Update activity.
                UpdateActivity(discord, lobby);
            });

            /*
             * var overlayManager = discord.GetOverlayManager();
             * overlayManager.OnOverlayLocked += locked =>
             * {
             *  Console.WriteLine("Overlay Locked: {0}", locked);
             * };
             * overlayManager.SetLocked(false);
             */

            /*
             * var storageManager = discord.GetStorageManager();
             * var contents = new byte[20000];
             * var random = new Random();
             * random.NextBytes(contents);
             * Console.WriteLine("storage path: {0}", storageManager.GetPath());
             * storageManager.WriteAsync("foo", contents, res => {
             *  var files = storageManager.Files();
             *  foreach (var file in files) {
             *      Console.WriteLine("file: {0} size: {1} last_modified: {2}", file.Filename, file.Size, file.LastModified);
             *  }
             *  storageManager.ReadAsyncPartial("foo", 400, 50, (result, data) => {
             *      Console.WriteLine("partial contents of foo match {0}", Enumerable.SequenceEqual(data, new ArraySegment<byte>(contents, 400, 50)));
             *  });
             *  storageManager.ReadAsync("foo", (result, data) => {
             *      Console.WriteLine("length of contents {0} data {1}", contents.Length, data.Length);
             *      Console.WriteLine("contents of foo match {0}", Enumerable.SequenceEqual(data, contents));
             *      Console.WriteLine("foo exists? {0}", storageManager.Exists("foo"));
             *      storageManager.Delete("foo");
             *      Console.WriteLine("post-delete foo exists? {0}", storageManager.Exists("foo"));
             *  });
             * });
             *
             */
            var storeManager = discord.GetStoreManager();

            storeManager.OnEntitlementCreate += (ref Discord.Entitlement entitlement) => {
                Console.WriteLine("Entitlement Create1: {0}", entitlement.Id);
            };

            // Start a purchase flow.
            // storeManager.StartPurchase(487507201519255552, result =>
            // {
            //     if (result == Discord.Result.Ok)
            //     {
            //         Console.WriteLine("Purchase Complete");
            //     }
            //     else
            //     {
            //         Console.WriteLine("Purchase Canceled");
            //     }
            // });

            // Get all entitlements.
            storeManager.FetchEntitlements(result => {
                if (result == Discord.Result.Ok)
                {
                    foreach (var entitlement in storeManager.GetEntitlements())
                    {
                        //Console.WriteLine("entitlement: {0} - {1} {2}", entitlement.Id, entitlement.Type, entitlement.SkuId);
                    }
                }
            });

            // Get all SKUs.
            storeManager.FetchSkus(result => {
                if (result == Discord.Result.Ok)
                {
                    foreach (var sku in storeManager.GetSkus())
                    {
                        //Console.WriteLine("sku: {0} - {1} {2}", sku.Name, sku.Price.Amount, sku.Price.Currency);
                    }
                }
            });
        }