Compare commits
No commits in common. "e9428e2cc650321f40d2ce92cc2e17820f4fb911" and "fe616214a9479d167020cd9f753b74aff167e5ae" have entirely different histories.
e9428e2cc6
...
fe616214a9
@ -1,6 +1,5 @@
|
||||
using AxibugEmuOnline.Client.ClientCore;
|
||||
using AxibugEmuOnline.Client.ClientCore;
|
||||
using AxibugEmuOnline.Client.Event;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AxibugEmuOnline.Client
|
||||
@ -12,7 +11,7 @@ namespace AxibugEmuOnline.Client
|
||||
public RomFile RomFile => m_rom;
|
||||
public override bool Enable => gameObject.activeInHierarchy;
|
||||
|
||||
/// <summary> 指示该游戏实例是否处于联机模式 </summary>
|
||||
/// <summary> 指示该游戏实例是否处于联机模式 </summary>
|
||||
public bool IsNetPlay
|
||||
{
|
||||
get
|
||||
@ -54,13 +53,13 @@ namespace AxibugEmuOnline.Client
|
||||
base.OnDestroy();
|
||||
}
|
||||
|
||||
/// <summary> 保存快速快照 </summary>
|
||||
/// <summary> 保存快速快照 </summary>
|
||||
public void SaveQuickState(object state)
|
||||
{
|
||||
m_state = state;
|
||||
}
|
||||
/// <summary>
|
||||
/// 读取快速快照
|
||||
/// 读取快速快照
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
/// <returns></returns>
|
||||
@ -69,31 +68,21 @@ namespace AxibugEmuOnline.Client
|
||||
return m_state;
|
||||
}
|
||||
|
||||
private bool m_delayCreateRoom;
|
||||
public void Show(RomFile currentRom, IEmuCore core)
|
||||
{
|
||||
m_delayCreateRoom = false;
|
||||
m_state = null;//清空游戏快照
|
||||
m_state = null;//清空游戏快照
|
||||
CommandDispatcher.Instance.RegistController(this);
|
||||
|
||||
m_rom = currentRom;
|
||||
Core = core;
|
||||
m_stepPerformer.Reset();
|
||||
|
||||
if (!App.roomMgr.InRoom)
|
||||
{
|
||||
if (App.user.IsLoggedIn)
|
||||
App.roomMgr.SendCreateRoom(m_rom.ID, 0, m_rom.Hash);
|
||||
else
|
||||
{
|
||||
m_delayCreateRoom = true;
|
||||
OverlayManager.PopTip("稍后将会建立房间");
|
||||
}
|
||||
if (App.user.IsLoggedIn && !App.roomMgr.InRoom)
|
||||
{
|
||||
App.roomMgr.SendCreateRoom(m_rom.ID, 0, m_rom.Hash);
|
||||
}
|
||||
|
||||
Eventer.Instance.RegisterEvent(EEvent.OnLoginSucceed, OnLoggedIn);
|
||||
Eventer.Instance.RegisterEvent<int>(EEvent.OnRoomWaitStepChange, OnServerStepUpdate);
|
||||
Eventer.Instance.RegisterEvent(EEvent.OnMineJoinRoom, OnRoomJoin);
|
||||
|
||||
gameObject.SetActiveEx(true);
|
||||
|
||||
@ -106,21 +95,8 @@ namespace AxibugEmuOnline.Client
|
||||
filter.ApplyPreset(preset);
|
||||
App.filter.EnableFilter(filter);
|
||||
}
|
||||
}
|
||||
|
||||
private void OnRoomJoin()
|
||||
{
|
||||
m_delayCreateRoom = false;
|
||||
}
|
||||
|
||||
private void OnLoggedIn()
|
||||
{
|
||||
if (m_delayCreateRoom)
|
||||
{
|
||||
App.roomMgr.SendCreateRoom(m_rom.ID, 0, m_rom.Hash);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void OnServerStepUpdate(int step)
|
||||
{
|
||||
m_stepPerformer.Perform(step);
|
||||
@ -138,21 +114,23 @@ namespace AxibugEmuOnline.Client
|
||||
{
|
||||
OverlayManager.PopSideBar(menus, 0, PopMenu_OnHide);
|
||||
|
||||
if (!IsNetPlay)//单人模式暂停模拟器
|
||||
if (!IsNetPlay)//单人模式暂停模拟器
|
||||
{
|
||||
Core.Pause();
|
||||
}
|
||||
}
|
||||
|
||||
//菜单关闭时候
|
||||
//菜单关闭时候
|
||||
private void PopMenu_OnHide()
|
||||
{
|
||||
if (!IsNetPlay)//单人模式恢复模拟器的暂停
|
||||
if (!IsNetPlay)//单人模式恢复模拟器的暂停
|
||||
Core.Resume();
|
||||
}
|
||||
|
||||
|
||||
public void QuitGame()
|
||||
{
|
||||
Eventer.Instance.UnregisterEvent<int>(EEvent.OnRoomWaitStepChange, OnServerStepUpdate);
|
||||
Eventer.Instance.UnregisterEvent(EEvent.OnLoginSucceed, OnLoggedIn);
|
||||
Eventer.Instance.UnregisterEvent(EEvent.OnMineJoinRoom, OnRoomJoin);
|
||||
App.roomMgr.SendLeavnRoom();
|
||||
App.emu.StopGame();
|
||||
}
|
||||
|
@ -1,9 +1,6 @@
|
||||
using AxibugEmuOnline.Client.ClientCore;
|
||||
using AxibugEmuOnline.Client.ClientCore;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEditor.Presets;
|
||||
using UnityEngine;
|
||||
using VirtualNes.Core;
|
||||
using static AxibugEmuOnline.Client.FilterManager;
|
||||
|
||||
namespace AxibugEmuOnline.Client
|
||||
@ -12,34 +9,14 @@ namespace AxibugEmuOnline.Client
|
||||
{
|
||||
private InGameUI m_gameUI;
|
||||
|
||||
public InGameUI_FilterSetting(InGameUI gameUI) : base("滤镜", null)
|
||||
public InGameUI_FilterSetting(InGameUI gameUI) : base("Â˾µ", null)
|
||||
{
|
||||
m_gameUI = gameUI;
|
||||
}
|
||||
|
||||
protected override List<OptionMenu> GetOptionMenus()
|
||||
{
|
||||
List<OptionMenu> menus = new List<OptionMenu>();
|
||||
menus.Add(new FilterNone(m_gameUI.RomFile));
|
||||
menus.AddRange(App.filter.Filters.Select(f => new FilterMenu(m_gameUI.RomFile, f) as OptionMenu));
|
||||
return menus;
|
||||
}
|
||||
|
||||
public class FilterNone : ExecuteMenu
|
||||
{
|
||||
private RomFile m_rom;
|
||||
|
||||
public FilterNone(RomFile rom) : base("取消滤镜", null)
|
||||
{
|
||||
m_rom = rom;
|
||||
}
|
||||
|
||||
public override void OnExcute(OptionUI optionUI, ref bool cancelHide)
|
||||
{
|
||||
App.filter.ShutDownFilter();
|
||||
|
||||
App.filter.SetupFilter(m_rom, null, null);
|
||||
}
|
||||
return App.filter.Filters.Select(f => new FilterMenu(m_gameUI.RomFile, f) as OptionMenu).ToList();
|
||||
}
|
||||
|
||||
public class FilterMenu : ExpandMenu
|
||||
|
Loading…
Reference in New Issue
Block a user