mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
9944a13c5e
Fix #138
482 lines
18 KiB
C#
482 lines
18 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Timers;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Documents;
|
|
using static VPet_Simulator.Core.GraphInfo;
|
|
|
|
namespace VPet_Simulator.Core
|
|
{
|
|
public partial class Main
|
|
{
|
|
public const int TreeRND = 5;
|
|
|
|
/// <summary>
|
|
/// 处理说话内容
|
|
/// </summary>
|
|
public event Action<string> OnSay;
|
|
/// <summary>
|
|
/// 上次交互时间
|
|
/// </summary>
|
|
public DateTime LastInteractionTime { get; set; } = DateTime.Now;
|
|
/// <summary>
|
|
/// 事件Timer
|
|
/// </summary>
|
|
public Timer EventTimer = new Timer(15000)
|
|
{
|
|
AutoReset = true,
|
|
Enabled = true
|
|
};
|
|
/// <summary>
|
|
/// 说话,使用随机表情
|
|
/// </summary>
|
|
public void SayRnd(string text, bool force = false, string desc = null)
|
|
{
|
|
Say(text, Core.Graph.FindName(GraphType.Say), force, desc);
|
|
}
|
|
/// <summary>
|
|
/// 说话
|
|
/// </summary>
|
|
/// <param name="text">说话内容</param>
|
|
public void Say(string text, string graphname = null, bool force = false, string desc = null)
|
|
{
|
|
Task.Run(() =>
|
|
{
|
|
OnSay?.Invoke(text);
|
|
if (force || !string.IsNullOrWhiteSpace(graphname) && DisplayType.Type == GraphType.Default)//这里不使用idle是因为idle包括学习等
|
|
Display(graphname, AnimatType.A_Start, () =>
|
|
{
|
|
Dispatcher.Invoke(() =>
|
|
{
|
|
if (!string.IsNullOrWhiteSpace(desc))
|
|
MsgBar.MessageBoxContent.Children.Add(new TextBlock() { Text = desc, FontSize = 20, ToolTip = desc, HorizontalAlignment = System.Windows.HorizontalAlignment.Right });
|
|
MsgBar.Show(Core.Save.Name, text, graphname);
|
|
});
|
|
DisplayBLoopingForce(graphname);
|
|
});
|
|
else
|
|
{
|
|
Dispatcher.Invoke(() =>
|
|
{
|
|
if (!string.IsNullOrWhiteSpace(desc))
|
|
MsgBar.MessageBoxContent.Children.Add(new TextBlock() { Text = desc, FontSize = 20, ToolTip = desc, HorizontalAlignment = System.Windows.HorizontalAlignment.Right });
|
|
MsgBar.Show(Core.Save.Name, text);
|
|
});
|
|
}
|
|
});
|
|
}
|
|
int labeldisplaycount = 100;
|
|
int labeldisplayhash = 0;
|
|
Timer labeldisplaytimer = new Timer(10)
|
|
{
|
|
AutoReset = true,
|
|
};
|
|
double labeldisplaychangenum1 = 0;
|
|
double labeldisplaychangenum2 = 0;
|
|
/// <summary>
|
|
/// 显示消息弹窗Label
|
|
/// </summary>
|
|
/// <param name="text">文本</param>
|
|
/// <param name="time">持续时间</param>
|
|
public void LabelDisplayShow(string text, int time = 2000)
|
|
{
|
|
labeldisplayhash = text.GetHashCode();
|
|
Dispatcher.Invoke(() =>
|
|
{
|
|
LabelDisplay.Content = text;
|
|
LabelDisplay.Opacity = 1;
|
|
LabelDisplay.Visibility = Visibility.Visible;
|
|
labeldisplaycount = time / 10;
|
|
labeldisplaytimer.Start();
|
|
});
|
|
}
|
|
/// <summary>
|
|
/// 显示消息弹窗Lable,自动统计数值变化
|
|
/// </summary>
|
|
/// <param name="text">文本, 使用{0:f2}</param>
|
|
/// <param name="changenum1">变化值1</param>
|
|
/// <param name="changenum2">变化值2</param>
|
|
/// <param name="time">持续时间</param>
|
|
public void LabelDisplayShowChangeNumber(string text, double changenum1, double changenum2 = 0, int time = 2000)
|
|
{
|
|
if (labeldisplayhash == text.GetHashCode())
|
|
{
|
|
labeldisplaychangenum1 += changenum1;
|
|
labeldisplaychangenum2 += changenum2;
|
|
}
|
|
else
|
|
{
|
|
labeldisplaychangenum1 = changenum1;
|
|
labeldisplaychangenum2 = changenum2;
|
|
labeldisplayhash = text.GetHashCode();
|
|
}
|
|
Dispatcher.Invoke(() =>
|
|
{
|
|
LabelDisplay.Content = string.Format(text, labeldisplaychangenum1, labeldisplaychangenum2);
|
|
LabelDisplay.Opacity = 1;
|
|
LabelDisplay.Visibility = Visibility.Visible;
|
|
labeldisplaycount = time / 10;
|
|
labeldisplaytimer.Start();
|
|
});
|
|
}
|
|
/// <summary>
|
|
/// 根据消耗计算相关数据
|
|
/// </summary>
|
|
/// <param name="TimePass">过去时间倍率</param>
|
|
public void FunctionSpend(double TimePass)
|
|
{
|
|
Core.Save.CleanChange();
|
|
Core.Save.StoreTake();
|
|
double freedrop = (DateTime.Now - LastInteractionTime).TotalMinutes;
|
|
if (freedrop < 1)
|
|
freedrop = 0.25 * TimePass;
|
|
else
|
|
freedrop = Math.Sqrt(freedrop) * TimePass / 2;
|
|
switch (State)
|
|
{
|
|
case WorkingState.Sleep:
|
|
//睡觉不消耗
|
|
Core.Save.StrengthChange(TimePass * 2);
|
|
if (Core.Save.StrengthFood <= 25)
|
|
{
|
|
Core.Save.StrengthChangeFood(TimePass / 2);
|
|
}
|
|
else if (Core.Save.StrengthFood >= 75)
|
|
Core.Save.Health += TimePass * 2;
|
|
if (Core.Save.StrengthDrink >= 25)
|
|
{
|
|
Core.Save.StrengthChangeDrink(TimePass / 2);
|
|
}
|
|
else if (Core.Save.StrengthDrink >= 75)
|
|
Core.Save.Health += TimePass * 2;
|
|
LastInteractionTime = DateTime.Now;
|
|
break;
|
|
case WorkingState.Work:
|
|
var nowwork = nowWork;
|
|
var needfood = TimePass * nowwork.StrengthFood;
|
|
var needdrink = TimePass * nowwork.StrengthDrink;
|
|
double efficiency = 0;
|
|
int addhealth = -2;
|
|
if (Core.Save.StrengthFood <= 25)
|
|
{//低状态低效率
|
|
Core.Save.StrengthChangeFood(-needfood / 2);
|
|
efficiency += 0.25;
|
|
if (Core.Save.Strength >= needfood)
|
|
{
|
|
Core.Save.StrengthChange(-needfood);
|
|
efficiency += 0.1;
|
|
}
|
|
addhealth -= 2;
|
|
}
|
|
else
|
|
{
|
|
Core.Save.StrengthChangeFood(-needfood);
|
|
efficiency += 0.5;
|
|
if (Core.Save.StrengthFood >= 75)
|
|
addhealth += Function.Rnd.Next(1, 3);
|
|
}
|
|
if (Core.Save.StrengthDrink <= 25)
|
|
{//低状态低效率
|
|
Core.Save.StrengthChangeDrink(-needdrink / 2);
|
|
efficiency += 0.25;
|
|
if (Core.Save.Strength >= needdrink)
|
|
{
|
|
Core.Save.StrengthChange(-needdrink);
|
|
efficiency += 0.1;
|
|
}
|
|
addhealth -= 2;
|
|
}
|
|
else
|
|
{
|
|
Core.Save.StrengthChangeDrink(-needdrink);
|
|
efficiency += 0.5;
|
|
if (Core.Save.StrengthDrink >= 75)
|
|
addhealth += Function.Rnd.Next(1, 3);
|
|
}
|
|
if (addhealth > 0)
|
|
Core.Save.Health += addhealth * TimePass;
|
|
var addmoney = Math.Max(0, TimePass * (nowwork.MoneyBase * (efficiency) + Math.Pow(Core.Save.Level, 0.75) * nowwork.MoneyLevel * (efficiency - 0.5) * 2));
|
|
if (nowwork.Type == GraphHelper.Work.WorkType.Work)
|
|
Core.Save.Money += addmoney;
|
|
else
|
|
Core.Save.Exp += addmoney;
|
|
WorkTimer.GetCount += addmoney;
|
|
if (nowwork.Type == GraphHelper.Work.WorkType.Play)
|
|
{
|
|
LastInteractionTime = DateTime.Now;
|
|
Core.Save.FeelingChange(nowwork.Feeling * TimePass);
|
|
}
|
|
else
|
|
Core.Save.FeelingChange(-freedrop * nowwork.Feeling);
|
|
break;
|
|
default://默认
|
|
//饮食等乱七八糟的消耗
|
|
addhealth = -2;
|
|
if (Core.Save.StrengthFood >= 50)
|
|
{
|
|
Core.Save.StrengthChangeFood(-TimePass);
|
|
Core.Save.StrengthChange(TimePass);
|
|
if (Core.Save.StrengthFood >= 75)
|
|
addhealth += Function.Rnd.Next(1, 3);
|
|
}
|
|
else if (Core.Save.StrengthFood <= 25)
|
|
{
|
|
Core.Save.Health -= Function.Rnd.NextDouble() * TimePass;
|
|
addhealth -= 2;
|
|
}
|
|
if (Core.Save.StrengthDrink >= 50)
|
|
{
|
|
Core.Save.StrengthChangeDrink(-TimePass);
|
|
Core.Save.StrengthChange(TimePass);
|
|
if (Core.Save.StrengthDrink >= 75)
|
|
addhealth += Function.Rnd.Next(1, 3);
|
|
}
|
|
else if (Core.Save.StrengthDrink <= 25)
|
|
{
|
|
Core.Save.Health -= Function.Rnd.NextDouble() * TimePass;
|
|
addhealth -= 2;
|
|
}
|
|
if (addhealth > 0)
|
|
Core.Save.Health += addhealth * TimePass;
|
|
Core.Save.StrengthChangeFood(-TimePass);
|
|
Core.Save.StrengthChangeDrink(-TimePass);
|
|
Core.Save.FeelingChange(-freedrop);
|
|
break;
|
|
}
|
|
|
|
//if (Core.GameSave.Strength <= 40)
|
|
//{
|
|
// Core.GameSave.Health -= Function.Rnd.Next(0, 1);
|
|
//}
|
|
Core.Save.Exp += TimePass;
|
|
//感受提升好感度
|
|
if (Core.Save.Feeling >= 75)
|
|
{
|
|
if (Core.Save.Feeling >= 90)
|
|
{
|
|
Core.Save.Likability += TimePass;
|
|
}
|
|
Core.Save.Exp += TimePass * 2;
|
|
Core.Save.Health += TimePass;
|
|
}
|
|
else if (Core.Save.Feeling <= 25)
|
|
{
|
|
Core.Save.Likability -= TimePass;
|
|
Core.Save.Exp -= TimePass;
|
|
}
|
|
if (Core.Save.StrengthDrink <= 25)
|
|
{
|
|
Core.Save.Health -= Function.Rnd.Next(0, 1) * TimePass;
|
|
Core.Save.Exp -= TimePass;
|
|
}
|
|
else if (Core.Save.StrengthDrink >= 75)
|
|
Core.Save.Health += Function.Rnd.Next(0, 1) * TimePass;
|
|
|
|
FunctionSpendHandle?.Invoke();
|
|
var newmod = Core.Save.CalMode();
|
|
if (Core.Save.Mode != newmod)
|
|
{
|
|
//切换显示动画
|
|
playSwitchAnimat(Core.Save.Mode, newmod);
|
|
|
|
Core.Save.Mode = newmod;
|
|
}
|
|
//看情况播放停止工作动画
|
|
if (Core.Save.Mode == GameSave.ModeType.Ill && State == WorkingState.Work)
|
|
{
|
|
WorkTimer.Stop();
|
|
}
|
|
}
|
|
private void playSwitchAnimat(GameSave.ModeType before, GameSave.ModeType after)
|
|
{
|
|
if (!(DisplayType.Type == GraphType.Default || DisplayType.Type == GraphType.Switch_Down || DisplayType.Type == GraphType.Switch_Up))
|
|
{
|
|
return;
|
|
}
|
|
else if (before == after)
|
|
{
|
|
DisplayToNomal();
|
|
return;
|
|
}
|
|
else if (before < after)
|
|
{
|
|
Display(Core.Graph.FindGraph(Core.Graph.FindName(GraphType.Switch_Down), AnimatType.Single, before),
|
|
() => playSwitchAnimat((GameSave.ModeType)(((int)before) + 1), after));
|
|
}
|
|
else
|
|
{
|
|
Display(Core.Graph.FindGraph(Core.Graph.FindName(GraphType.Switch_Up), AnimatType.Single, before),
|
|
() => playSwitchAnimat((GameSave.ModeType)(((int)before) - 1), after));
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 状态计算Handle
|
|
/// </summary>
|
|
public event Action FunctionSpendHandle;
|
|
/// <summary>
|
|
/// 想要随机显示的接口 (return:是否成功)
|
|
/// </summary>
|
|
public List<Func<bool>> RandomInteractionAction = new List<Func<bool>>();
|
|
|
|
public bool IsIdel => (DisplayType.Type == GraphType.Default || DisplayType.Type == GraphType.Work) && !isPress;
|
|
|
|
/// <summary>
|
|
/// 每隔指定时间自动触发计算 可以关闭EventTimer后手动计算
|
|
/// </summary>
|
|
public void EventTimer_Elapsed()
|
|
{
|
|
//所有Handle
|
|
TimeHandle?.Invoke(this);
|
|
if (Core.Controller.EnableFunction)
|
|
{
|
|
FunctionSpend(0.05);
|
|
}
|
|
else
|
|
{
|
|
//Core.Save.Mode = GameSave.ModeType.Happy;
|
|
//Core.GameSave.Mode = GameSave.ModeType.Ill;
|
|
Core.Save.Mode = NoFunctionMOD;
|
|
}
|
|
|
|
//UIHandle
|
|
Dispatcher.Invoke(() => TimeUIHandle?.Invoke(this));
|
|
|
|
if (IsIdel)
|
|
switch (Function.Rnd.Next(Math.Max(20, Core.Controller.InteractionCycle - CountNomal)))
|
|
{
|
|
case 0:
|
|
case 1:
|
|
case 2:
|
|
//显示移动
|
|
DisplayMove();
|
|
break;
|
|
case 3:
|
|
case 4:
|
|
case 5:
|
|
//显示待机
|
|
DisplayIdel();
|
|
break;
|
|
case 6:
|
|
DisplayIdel_StateONE();
|
|
break;
|
|
case 7:
|
|
DisplaySleep();
|
|
break;
|
|
case 8:
|
|
case 9:
|
|
case 10:
|
|
//给其他显示留个机会
|
|
var list = RandomInteractionAction.ToList();
|
|
for (int i = Function.Rnd.Next(list.Count); 0 != list.Count; i = Function.Rnd.Next(list.Count))
|
|
{
|
|
var act = list[i];
|
|
if (act.Invoke())
|
|
{
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
list.RemoveAt(i);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
}
|
|
/// <summary>
|
|
/// 定点移动位置向量
|
|
/// </summary>
|
|
public Point MoveTimerPoint = new Point(0, 0);
|
|
/// <summary>
|
|
/// 定点移动定时器
|
|
/// </summary>
|
|
public Timer MoveTimer = new Timer();
|
|
/// <summary>
|
|
/// 设置计算间隔
|
|
/// </summary>
|
|
/// <param name="Interval">计算间隔</param>
|
|
public void SetLogicInterval(int Interval)
|
|
{
|
|
EventTimer.Interval = Interval;
|
|
}
|
|
private Timer SmartMoveTimer = new Timer(20 * 60)
|
|
{
|
|
AutoReset = true,
|
|
};
|
|
/// <summary>
|
|
/// 是否启用智能移动
|
|
/// </summary>
|
|
private bool SmartMove;
|
|
/// <summary>
|
|
/// 设置移动模式
|
|
/// </summary>
|
|
/// <param name="AllowMove">允许移动</param>
|
|
/// <param name="smartMove">启用智能移动</param>
|
|
/// <param name="SmartMoveInterval">智能移动周期</param>
|
|
public void SetMoveMode(bool AllowMove, bool smartMove, int SmartMoveInterval)
|
|
{
|
|
MoveTimer.Enabled = false;
|
|
if (AllowMove)
|
|
{
|
|
MoveTimerSmartMove = true;
|
|
if (smartMove)
|
|
{
|
|
SmartMoveTimer.Interval = SmartMoveInterval;
|
|
SmartMoveTimer.Start();
|
|
SmartMove = true;
|
|
}
|
|
else
|
|
{
|
|
SmartMoveTimer.Enabled = false;
|
|
SmartMove = false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
MoveTimerSmartMove = false;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 当前状态
|
|
/// </summary>
|
|
public WorkingState State = WorkingState.Nomal;
|
|
/// <summary>
|
|
/// 当前状态辅助ID
|
|
/// </summary>
|
|
public int StateID = 0;
|
|
/// <summary>
|
|
/// 当前工作
|
|
/// </summary>
|
|
public GraphHelper.Work nowWork => Core.Graph.GraphConfig.Works[StateID];
|
|
/// <summary>
|
|
/// 当前正在的状态
|
|
/// </summary>
|
|
public enum WorkingState
|
|
{
|
|
/// <summary>
|
|
/// 默认:啥都没干
|
|
/// </summary>
|
|
Nomal,
|
|
/// <summary>
|
|
/// 正在干活/学习中
|
|
/// </summary>
|
|
Work,
|
|
/// <summary>
|
|
/// 睡觉
|
|
/// </summary>
|
|
Sleep,
|
|
/// <summary>
|
|
/// 旅游中
|
|
/// </summary>
|
|
Travel,
|
|
/// <summary>
|
|
/// 其他状态,给开发者留个空位计算
|
|
/// </summary>
|
|
Empty,
|
|
}
|
|
}
|
|
}
|