SSLR/SSLR/Assets/Scripts/Backend.cs
ryan 3db6d3b6ce game: backend is single
me and this backend is so similar
2025-02-13 22:40:55 +08:00

120 lines
No EOL
3.1 KiB
C#

using UnityEngine;
using Supabase;
using Supabase.Gotrue;
using Client = Supabase.Client;
using Firebase;
using Firebase.Database;
public class Backend : MonoBehaviour
{
public static Backend instance;
[SerializeField] private string url;
[SerializeField] private string anonKey;
public Client Client;
public string email;
public string password;
public Session Session;
public Users User;
private async void Start()
{
var options = new SupabaseOptions
{
AutoConnectRealtime = true
};
Client = new Supabase.Client(url, anonKey, options);
await Client.InitializeAsync().ContinueWith(task =>
{
if (!task.IsCompletedSuccessfully)
{
Debug.LogError(task.Exception);
}
else
{
Debug.Log("Supabase Initialized");
}
});
FirebaseGet();
}
public async void SendData(string uid, int score, string displayName, int daysPlayed, int customersHelped,
int customersHelpedWrongly)
{
var user = new Users
{
uid = uid,
score = score,
displayName = displayName,
daysPlayed = daysPlayed,
customersHelped = customersHelped,
customersHelpedWrongly = customersHelpedWrongly,
};
await Client.From<Users>().Insert(user).ContinueWith(SendTask =>
{
if (!SendTask.IsCompletedSuccessfully)
{
Debug.LogError(SendTask.Exception);
}
else
{
Debug.Log("Data Sent Sucessfully");
}
});
}
public async void SignUp(string email, string password, string displayName)
{
Session = await Client.Auth.SignUp(email, password);
Debug.Log(Session.User.Id);
SendData(Session.User.Id, 0, displayName, 0, 0, 0);
}
public async void SignIn(string email, string password)
{
Session = await Client.Auth.SignIn(email, password);
Debug.Log(Session.User.Id);
GetData(Session.User.Id);
}
public async void GetData(string uid)
{
var result = await Client.From<Users>().Where(x => x.uid == uid).Get();
User = result.Model;
}
public NpcData FirebaseGet()
{
NpcData data = new NpcData();
FirebaseDatabase.DefaultInstance.RootReference.Child("scenarios").Child("1").GetValueAsync().ContinueWith(task =>
{
if (task.IsFaulted)
{
Debug.LogError(task.Exception);
}
else if (task.IsCompleted)
{
DataSnapshot snapshot = task.Result;
string json = snapshot.GetRawJsonValue();
data = JsonUtility.FromJson<NpcData>(json);
}
});
return data;
}
private void Awake()
{
if (instance == null)
{
instance = this;
DontDestroyOnLoad(gameObject);
}
else
{
Destroy(gameObject);
}
}
}