-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPriceSynchroniser.cs
50 lines (46 loc) · 1.69 KB
/
PriceSynchroniser.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using Steamworks;
using UnityEngine;
namespace ContentWarningShop
{
internal class PriceSynchroniser
{
private static Callback<LobbyCreated_t> cb_onLobbyCreated;
private static Callback<LobbyEnter_t> cb_onLobbyEntered;
private static bool IsHost => SteamMatchmaking.GetLobbyOwner(LobbyID) == SteamUser.GetSteamID();
private static CSteamID LobbyID { get; set; }
internal static void RegisterCallbacks()
{
cb_onLobbyCreated = Callback<LobbyCreated_t>.Create(OnLobbyCreated);
cb_onLobbyEntered = Callback<LobbyEnter_t>.Create(OnLobbyEntered);
}
private static void OnLobbyCreated(LobbyCreated_t e)
{
if (e.m_eResult != EResult.k_EResultOK)
{
return;
}
LobbyID = new(e.m_ulSteamIDLobby);
foreach (var item in Shop._items)
{
var key = $"__{item.PersistentID}_price";
SteamMatchmaking.SetLobbyData(LobbyID, key, $"{item.price}");
Debug.Log($"Item price registered: {item.name} ({key}) = {item.price}");
}
}
private static void OnLobbyEntered(LobbyEnter_t e)
{
if (IsHost == true)
{
return;
}
LobbyID = new(e.m_ulSteamIDLobby);
foreach (var item in Shop._items)
{
var key = $"__{item.PersistentID}_price";
var strVal = SteamMatchmaking.GetLobbyData(LobbyID, key);
item.price = int.Parse(strVal);
Debug.Log($"Item price synchronised: {item.name} ({key}) = {item.price}");
}
}
}
}