2017-09-03 22:56:05 +00:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
2017-09-04 23:53:18 +00:00
|
|
|
|
using UnityEngine.UI;
|
2017-09-03 22:56:05 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Runtime.Serialization.Formatters.Binary;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class GameManager : MonoBehaviour {
|
|
|
|
|
|
|
|
|
|
//Used to save playerdata
|
|
|
|
|
//Serializable tells unity it can save to a file
|
|
|
|
|
[Serializable]
|
|
|
|
|
private class PlayerData
|
|
|
|
|
{
|
|
|
|
|
public int level;
|
|
|
|
|
public float experience;
|
|
|
|
|
public float requirement;
|
|
|
|
|
public float speed;
|
2017-09-06 01:41:56 +00:00
|
|
|
|
public float speedIncrement;
|
|
|
|
|
public float expIncrement;
|
2017-09-04 17:53:03 +00:00
|
|
|
|
public float rotationsPerSec;
|
2017-09-04 01:46:47 +00:00
|
|
|
|
public DateTime currentTime;
|
|
|
|
|
|
2017-09-03 22:56:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-04 23:53:18 +00:00
|
|
|
|
public float idleExp;
|
2017-09-04 18:56:21 +00:00
|
|
|
|
|
2017-09-05 22:12:08 +00:00
|
|
|
|
public GameObject popup;
|
|
|
|
|
public GameObject popupSpawn;
|
|
|
|
|
public string notify;
|
2017-09-03 22:56:05 +00:00
|
|
|
|
|
2017-09-04 18:56:21 +00:00
|
|
|
|
void OnApplicationFocus(bool pauseStatus)
|
|
|
|
|
{
|
2017-09-05 22:12:08 +00:00
|
|
|
|
Debug.Log("OnApplicationFocused");
|
2017-09-04 18:56:21 +00:00
|
|
|
|
if (pauseStatus)
|
|
|
|
|
{
|
|
|
|
|
//your app is NO LONGER in the background
|
|
|
|
|
Load();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
//your app is now in the background
|
|
|
|
|
Save();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-03 22:56:05 +00:00
|
|
|
|
void OnApplicationQuit()
|
|
|
|
|
{
|
|
|
|
|
Save();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Save()
|
|
|
|
|
{
|
|
|
|
|
BinaryFormatter bf = new BinaryFormatter();
|
|
|
|
|
FileStream file = File.Create(Application.persistentDataPath + "/playerInfo.dat");
|
|
|
|
|
|
|
|
|
|
int currentLevel = GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().currentLevel;
|
|
|
|
|
float currentExp = GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().currentExp;
|
|
|
|
|
float currentRequirement = GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().currentRequirement;
|
2017-09-04 17:53:03 +00:00
|
|
|
|
float rotationPerSec = GameObject.FindGameObjectWithTag("Player").GetComponent<SpinningCube>().rotationPerSec;
|
2017-09-03 22:56:05 +00:00
|
|
|
|
float currentSpeed = GameObject.FindGameObjectWithTag("Player").GetComponent<SpinningCube>().currentSpeed;
|
|
|
|
|
float currentIncrement = GameObject.FindGameObjectWithTag("Player").GetComponent<SpinningCube>().currentIncrement;
|
2017-09-06 01:41:56 +00:00
|
|
|
|
float currentExpIncrement = GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().expIncrement;
|
2017-09-03 22:56:05 +00:00
|
|
|
|
|
|
|
|
|
PlayerData data = new PlayerData();
|
|
|
|
|
data.level = currentLevel;
|
|
|
|
|
data.experience = currentExp;
|
|
|
|
|
data.requirement = currentRequirement;
|
|
|
|
|
data.speed = currentSpeed;
|
2017-09-06 01:41:56 +00:00
|
|
|
|
data.speedIncrement = currentIncrement;
|
|
|
|
|
data.expIncrement = currentExpIncrement;
|
2017-09-04 17:53:03 +00:00
|
|
|
|
data.rotationsPerSec = rotationPerSec;
|
2017-09-04 18:56:21 +00:00
|
|
|
|
data.currentTime = System.DateTime.Now;
|
2017-09-03 22:56:05 +00:00
|
|
|
|
|
|
|
|
|
bf.Serialize(file, data);
|
|
|
|
|
file.Close();
|
|
|
|
|
Debug.Log("Saved");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Load()
|
|
|
|
|
{
|
|
|
|
|
if (File.Exists(Application.persistentDataPath + "/playerInfo.dat"))
|
|
|
|
|
{
|
|
|
|
|
BinaryFormatter bf = new BinaryFormatter();
|
|
|
|
|
FileStream file = File.Open(Application.persistentDataPath + "/playerInfo.dat", FileMode.Open);
|
|
|
|
|
PlayerData data = (PlayerData)bf.Deserialize(file);
|
|
|
|
|
file.Close();
|
|
|
|
|
|
2017-09-04 17:53:03 +00:00
|
|
|
|
GameObject.FindGameObjectWithTag("Player").GetComponent<SpinningCube>().rotationPerSec = data.rotationsPerSec;
|
2017-09-03 22:56:05 +00:00
|
|
|
|
GameObject.FindGameObjectWithTag("Player").GetComponent<SpinningCube>().currentSpeed = data.speed;
|
2017-09-06 01:41:56 +00:00
|
|
|
|
GameObject.FindGameObjectWithTag("Player").GetComponent<SpinningCube>().currentIncrement = data.speedIncrement;
|
|
|
|
|
GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().expIncrement = data.expIncrement;
|
2017-09-03 22:56:05 +00:00
|
|
|
|
GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().currentLevel = data.level;
|
|
|
|
|
GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().currentExp = data.experience;
|
|
|
|
|
GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().currentRequirement = data.requirement;
|
2017-09-04 01:46:47 +00:00
|
|
|
|
|
2017-09-04 18:56:21 +00:00
|
|
|
|
DateTime loadTime = System.DateTime.Now;
|
2017-09-04 17:53:03 +00:00
|
|
|
|
int secondsPassed = GetIdleTime(data.currentTime, loadTime);
|
2017-09-06 01:41:56 +00:00
|
|
|
|
idleExp = (data.rotationsPerSec * secondsPassed) * data.expIncrement;
|
2017-09-04 01:46:47 +00:00
|
|
|
|
GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().currentExp += idleExp;
|
|
|
|
|
|
2017-09-04 23:53:18 +00:00
|
|
|
|
if (idleExp >= 0.0f)
|
|
|
|
|
{
|
2017-09-06 01:41:56 +00:00
|
|
|
|
RewardPopup(idleExp, 1);
|
2017-09-04 23:53:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-03 22:56:05 +00:00
|
|
|
|
Debug.Log("Loaded");
|
2017-09-04 01:46:47 +00:00
|
|
|
|
Debug.Log("idleExp: " + idleExp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-04 17:53:03 +00:00
|
|
|
|
public int GetIdleTime(DateTime saveTime, DateTime loadTime)
|
2017-09-04 01:46:47 +00:00
|
|
|
|
{
|
|
|
|
|
int daysPassed = 0;
|
|
|
|
|
int hoursPassed = 0;
|
|
|
|
|
int minutesPassed = 0;
|
|
|
|
|
int secondsPassed = 0;
|
|
|
|
|
|
|
|
|
|
for (int monthSaved = saveTime.Month; monthSaved < loadTime.Month; ++monthSaved)
|
|
|
|
|
{
|
|
|
|
|
daysPassed += 30;
|
2017-09-03 22:56:05 +00:00
|
|
|
|
}
|
2017-09-04 01:46:47 +00:00
|
|
|
|
daysPassed += loadTime.Day - saveTime.Day;
|
|
|
|
|
|
|
|
|
|
hoursPassed = daysPassed * 24;
|
|
|
|
|
hoursPassed += loadTime.Hour - saveTime.Hour;
|
|
|
|
|
|
|
|
|
|
minutesPassed = hoursPassed * 60;
|
|
|
|
|
minutesPassed += loadTime.Minute - saveTime.Minute;
|
|
|
|
|
|
|
|
|
|
secondsPassed = minutesPassed * 60;
|
|
|
|
|
secondsPassed += loadTime.Second - saveTime.Second;
|
|
|
|
|
|
|
|
|
|
Debug.Log("Seconds Passed: " + secondsPassed);
|
|
|
|
|
return secondsPassed;
|
2017-09-03 22:56:05 +00:00
|
|
|
|
}
|
2017-09-04 01:46:47 +00:00
|
|
|
|
|
2017-09-06 01:41:56 +00:00
|
|
|
|
|
|
|
|
|
public int notificationType;
|
|
|
|
|
public float noteValue;
|
|
|
|
|
/*
|
|
|
|
|
* type 1 = exp
|
|
|
|
|
* type 2 = level
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void RewardPopup(float value, int type)
|
2017-09-04 23:53:18 +00:00
|
|
|
|
{
|
2017-09-06 01:41:56 +00:00
|
|
|
|
notificationType = type;
|
|
|
|
|
noteValue = value;
|
2017-09-05 22:12:08 +00:00
|
|
|
|
Instantiate(popup, popupSpawn.transform.position, popupSpawn.transform.rotation, GameObject.Find("Notification Panel").gameObject.transform );
|
|
|
|
|
Debug.Log("Popup Created");
|
2017-09-04 23:53:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 01:41:56 +00:00
|
|
|
|
public void MakeStringPopup(string content, int type)
|
2017-09-04 23:53:18 +00:00
|
|
|
|
{
|
2017-09-06 01:41:56 +00:00
|
|
|
|
notify = content;
|
|
|
|
|
notificationType = type;
|
|
|
|
|
Instantiate(popup, popupSpawn.transform.position, popupSpawn.transform.rotation, GameObject.Find("Notification Panel").gameObject.transform);
|
|
|
|
|
Debug.Log("Popup Created");
|
2017-09-04 23:53:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-03 22:56:05 +00:00
|
|
|
|
}
|