Compare commits
No commits in common. "12f8f0eea5da7f51cd75110969541702f7b71a64" and "194150b911ec13d3ccbf854b6d8ade71d92b17d7" have entirely different histories.
12f8f0eea5
...
194150b911
@ -13,7 +13,7 @@ namespace AxibugEmuOnline.Client
|
|||||||
void Pause();
|
void Pause();
|
||||||
void Resume();
|
void Resume();
|
||||||
void SetupScheme();
|
void SetupScheme();
|
||||||
MsgBool StartGame(RomFile romFile);
|
void StartGame(RomFile romFile);
|
||||||
void DoReset();
|
void DoReset();
|
||||||
IControllerSetuper GetControllerSetuper();
|
IControllerSetuper GetControllerSetuper();
|
||||||
|
|
||||||
|
|||||||
@ -56,9 +56,7 @@ namespace AxibugEmuOnline.Client.Manager
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
var result = m_emuCore.StartGame(romFile);
|
m_emuCore.StartGame(romFile);
|
||||||
if (result)
|
|
||||||
{
|
|
||||||
LaunchUI.Instance.HideMainMenu();
|
LaunchUI.Instance.HideMainMenu();
|
||||||
InGameUI.Instance.Show(romFile, m_emuCore);
|
InGameUI.Instance.Show(romFile, m_emuCore);
|
||||||
|
|
||||||
@ -72,12 +70,6 @@ namespace AxibugEmuOnline.Client.Manager
|
|||||||
|
|
||||||
Eventer.Instance.RegisterEvent(EEvent.OnRoomSlotDataChanged, OnSlotDataChanged);
|
Eventer.Instance.RegisterEvent(EEvent.OnRoomSlotDataChanged, OnSlotDataChanged);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
StopGame();
|
|
||||||
OverlayManager.PopTip(result);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnSlotDataChanged()
|
private void OnSlotDataChanged()
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using AxibugEmuOnline.Client.ClientCore;
|
using AxibugEmuOnline.Client.ClientCore;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@ -12,20 +12,21 @@ namespace AxibugEmuOnline.Client
|
|||||||
public string WebHost = "http://emu.axibug.com";
|
public string WebHost = "http://emu.axibug.com";
|
||||||
public string WebSiteApi => WebHost + "/api";
|
public string WebSiteApi => WebHost + "/api";
|
||||||
|
|
||||||
public delegate void GetRomListAPI(Action<int, Resp_GameList> callback, int page, int pageSize = 10);
|
public delegate void GetRomListAPI(Action<Resp_GameList> callback, int page, int pageSize = 10);
|
||||||
public delegate void SearchRomListAPI(Action<int, Resp_GameList> callback, string searchKey, int page, int pageSize = 10);
|
public delegate void SearchRomListAPI(Action<Resp_GameList> callback, string searchKey, int page, int pageSize = 10);
|
||||||
|
|
||||||
public void GetNesRomList(Action<int, Resp_GameList> callback, int page, int pageSize = 10)
|
public void GetNesRomList(Action<Resp_GameList> callback, int page, int pageSize = 10)
|
||||||
{
|
{
|
||||||
App.StartCoroutine(GetNesRomListFlow(page, pageSize, callback));
|
App.StartCoroutine(GetNesRomListFlow(page, pageSize, callback));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SearchNesRomList(Action<int, Resp_GameList> callback, string searchKey, int page, int pageSize = 10)
|
public void SearchNesRomList(Action<Resp_GameList> callback, string searchKey, int page, int pageSize = 10)
|
||||||
{
|
{
|
||||||
App.StartCoroutine(SearchNesRomListFlow(searchKey, page, pageSize, callback));
|
App.StartCoroutine(SearchNesRomListFlow(searchKey, page, pageSize, callback));
|
||||||
}
|
}
|
||||||
private IEnumerator SearchNesRomListFlow(string searchKey, int page, int pageSize, Action<int, Resp_GameList> callback)
|
private IEnumerator SearchNesRomListFlow(string searchKey, int page, int pageSize, Action<Resp_GameList> callback)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(searchKey))
|
if (!string.IsNullOrEmpty(searchKey))
|
||||||
{
|
{
|
||||||
string oldsearch = searchKey;
|
string oldsearch = searchKey;
|
||||||
@ -47,19 +48,19 @@ namespace AxibugEmuOnline.Client
|
|||||||
yield return request.SendWebRequest;
|
yield return request.SendWebRequest;
|
||||||
if (!request.downloadHandler.isDone)
|
if (!request.downloadHandler.isDone)
|
||||||
{
|
{
|
||||||
callback.Invoke(page, null);
|
callback.Invoke(null);
|
||||||
yield break;
|
yield break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!request.downloadHandler.bHadErr)
|
if (!request.downloadHandler.bHadErr)
|
||||||
{
|
{
|
||||||
var resp = JsonUtility.FromJson<Resp_GameList>(request.downloadHandler.text);
|
var resp = JsonUtility.FromJson<Resp_GameList>(request.downloadHandler.text);
|
||||||
callback.Invoke(page, resp);
|
callback.Invoke(resp);
|
||||||
yield break;
|
yield break;
|
||||||
}
|
}
|
||||||
|
|
||||||
App.log.Error(request.downloadHandler.ErrInfo);
|
App.log.Error(request.downloadHandler.ErrInfo);
|
||||||
callback.Invoke(page, null);
|
callback.Invoke(null);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
UnityWebRequest request = UnityWebRequest.Get($"{WebSiteApi}/NesRomList?Page={page}&PageSize={pageSize}&SearchKey={searchKey}");
|
UnityWebRequest request = UnityWebRequest.Get($"{WebSiteApi}/NesRomList?Page={page}&PageSize={pageSize}&SearchKey={searchKey}");
|
||||||
@ -72,7 +73,7 @@ namespace AxibugEmuOnline.Client
|
|||||||
}*/
|
}*/
|
||||||
|
|
||||||
}
|
}
|
||||||
private IEnumerator GetNesRomListFlow(int page, int pageSize, Action<int, Resp_GameList> callback)
|
private IEnumerator GetNesRomListFlow(int page, int pageSize, Action<Resp_GameList> callback)
|
||||||
{
|
{
|
||||||
string url = $"{WebSiteApi}/NesRomList?Page={page}&PageSize={pageSize}";
|
string url = $"{WebSiteApi}/NesRomList?Page={page}&PageSize={pageSize}";
|
||||||
App.log.Info($"GetRomList=>{url}");
|
App.log.Info($"GetRomList=>{url}");
|
||||||
@ -80,7 +81,7 @@ namespace AxibugEmuOnline.Client
|
|||||||
yield return request.SendWebRequest;
|
yield return request.SendWebRequest;
|
||||||
if (!request.downloadHandler.isDone)
|
if (!request.downloadHandler.isDone)
|
||||||
{
|
{
|
||||||
callback.Invoke(page, null);
|
callback.Invoke(null);
|
||||||
yield break;
|
yield break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -88,12 +89,12 @@ namespace AxibugEmuOnline.Client
|
|||||||
if (!request.downloadHandler.bHadErr)
|
if (!request.downloadHandler.bHadErr)
|
||||||
{
|
{
|
||||||
var resp = JsonUtility.FromJson<Resp_GameList>(request.downloadHandler.text);
|
var resp = JsonUtility.FromJson<Resp_GameList>(request.downloadHandler.text);
|
||||||
callback.Invoke(page, resp);
|
callback.Invoke(resp);
|
||||||
yield break;
|
yield break;
|
||||||
}
|
}
|
||||||
|
|
||||||
App.log.Error(request.downloadHandler.ErrInfo);
|
App.log.Error(request.downloadHandler.ErrInfo);
|
||||||
callback.Invoke(page, null);
|
callback.Invoke(null);
|
||||||
/*
|
/*
|
||||||
UnityWebRequest request = UnityWebRequest.Get($"{WebSiteApi}/NesRomList?Page={page}&PageSize={pageSize}");
|
UnityWebRequest request = UnityWebRequest.Get($"{WebSiteApi}/NesRomList?Page={page}&PageSize={pageSize}");
|
||||||
yield return request.SendWebRequest();
|
yield return request.SendWebRequest();
|
||||||
|
|||||||
@ -96,12 +96,11 @@ namespace AxibugEmuOnline.Client
|
|||||||
if (Path.GetExtension(LocalFilePath).ToLower() == ".zip")
|
if (Path.GetExtension(LocalFilePath).ToLower() == ".zip")
|
||||||
{
|
{
|
||||||
var zip = new ZipInputStream(new MemoryStream(bytes));
|
var zip = new ZipInputStream(new MemoryStream(bytes));
|
||||||
while (true)
|
var entry = zip.GetNextEntry() as ZipEntry;
|
||||||
{
|
|
||||||
var currentEntry = zip.GetNextEntry();
|
|
||||||
if (currentEntry == null) break;
|
|
||||||
|
|
||||||
if (!currentEntry.Name.ToLower().EndsWith(".nes")) continue;
|
while (entry != null)
|
||||||
|
{
|
||||||
|
if (!entry.Name.ToLower().EndsWith(".nes")) continue;
|
||||||
|
|
||||||
var buffer = new byte[1024];
|
var buffer = new byte[1024];
|
||||||
MemoryStream output = new MemoryStream();
|
MemoryStream output = new MemoryStream();
|
||||||
|
|||||||
@ -75,17 +75,14 @@ namespace AxibugEmuOnline.Client
|
|||||||
lastSearchKey = searchKey;
|
lastSearchKey = searchKey;
|
||||||
if (string.IsNullOrWhiteSpace(searchKey))
|
if (string.IsNullOrWhiteSpace(searchKey))
|
||||||
{
|
{
|
||||||
m_romGetFunc((page, romList) =>
|
m_romGetFunc((romList) =>
|
||||||
{
|
{
|
||||||
|
//TODO 请求失败对于romList为空时的处理
|
||||||
|
|
||||||
FetchPageCmd.Clear();
|
FetchPageCmd.Clear();
|
||||||
nesRomFileIdMapper.Clear();
|
nesRomFileIdMapper.Clear();
|
||||||
nesRomFileNameMapper.Clear();
|
nesRomFileNameMapper.Clear();
|
||||||
|
|
||||||
if (romList != null)
|
|
||||||
nesRomFetchList = new RomFile[romList.resultAllCount];
|
nesRomFetchList = new RomFile[romList.resultAllCount];
|
||||||
else
|
|
||||||
nesRomFetchList = new RomFile[0];
|
|
||||||
|
|
||||||
for (int i = 0; i < nesRomFetchList.Length; i++)
|
for (int i = 0; i < nesRomFetchList.Length; i++)
|
||||||
{
|
{
|
||||||
//以后考虑用对象池实例化RomFile
|
//以后考虑用对象池实例化RomFile
|
||||||
@ -98,17 +95,14 @@ namespace AxibugEmuOnline.Client
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_romSearchFunc((page, romList) =>
|
m_romSearchFunc((romList) =>
|
||||||
{
|
{
|
||||||
|
//TODO 请求失败对于romList为空时的处理
|
||||||
|
|
||||||
FetchPageCmd.Clear();
|
FetchPageCmd.Clear();
|
||||||
nesRomFileIdMapper.Clear();
|
nesRomFileIdMapper.Clear();
|
||||||
nesRomFileNameMapper.Clear();
|
nesRomFileNameMapper.Clear();
|
||||||
|
|
||||||
if (romList != null)
|
|
||||||
nesRomFetchList = new RomFile[romList.resultAllCount];
|
nesRomFetchList = new RomFile[romList.resultAllCount];
|
||||||
else
|
|
||||||
nesRomFetchList = new RomFile[0];
|
|
||||||
|
|
||||||
for (int i = 0; i < nesRomFetchList.Length; i++)
|
for (int i = 0; i < nesRomFetchList.Length; i++)
|
||||||
{
|
{
|
||||||
//以后考虑用对象池实例化RomFile
|
//以后考虑用对象池实例化RomFile
|
||||||
@ -121,47 +115,33 @@ namespace AxibugEmuOnline.Client
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool m_needFetch = false;
|
|
||||||
public void BeginFetchRomInfo(RomFile romFile)
|
public void BeginFetchRomInfo(RomFile romFile)
|
||||||
{
|
{
|
||||||
if (romFile.InfoReady) return;
|
if (romFile.InfoReady) return;
|
||||||
|
|
||||||
if (FetchPageCmd.Add(romFile.Page))
|
FetchPageCmd.Add(romFile.Page);
|
||||||
m_needFetch = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ExecuteFetchRomInfo()
|
public void ExecuteFetchRomInfo()
|
||||||
{
|
{
|
||||||
if (FetchPageCmd.Count == 0) return;
|
if (FetchPageCmd.Count == 0) return;
|
||||||
if (!m_needFetch) return;
|
|
||||||
|
|
||||||
foreach (var pageNo in FetchPageCmd)
|
foreach (var pageNo in FetchPageCmd)
|
||||||
{
|
{
|
||||||
if (!string.IsNullOrEmpty(lastSearchKey))
|
if (!string.IsNullOrEmpty(lastSearchKey))
|
||||||
{
|
{
|
||||||
m_romSearchFunc((page, resp) =>
|
m_romSearchFunc(SaveRomInfoFromWeb, lastSearchKey, pageNo, PAGE_SIZE);
|
||||||
{
|
|
||||||
FetchPageCmd.Remove(page);
|
|
||||||
SaveRomInfoFromWeb(resp);
|
|
||||||
}, lastSearchKey, pageNo, PAGE_SIZE);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_romGetFunc((page, resp) =>
|
m_romGetFunc(SaveRomInfoFromWeb, pageNo, PAGE_SIZE);
|
||||||
{
|
|
||||||
FetchPageCmd.Remove(page);
|
|
||||||
SaveRomInfoFromWeb(resp);
|
|
||||||
}, pageNo, PAGE_SIZE);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
FetchPageCmd.Clear();
|
||||||
m_needFetch = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SaveRomInfoFromWeb(Resp_GameList resp)
|
private void SaveRomInfoFromWeb(Resp_GameList resp)
|
||||||
{
|
{
|
||||||
if (resp == null) return;
|
|
||||||
|
|
||||||
for (int i = 0; i < resp.gameList.Count; i++)
|
for (int i = 0; i < resp.gameList.Count; i++)
|
||||||
{
|
{
|
||||||
var webData = resp.gameList[i];
|
var webData = resp.gameList[i];
|
||||||
|
|||||||
@ -63,7 +63,7 @@ namespace AxibugEmuOnline.Client
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 指定ROM开始游戏
|
/// 指定ROM开始游戏
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public MsgBool StartGame(RomFile rom)
|
public void StartGame(RomFile rom)
|
||||||
{
|
{
|
||||||
StopGame();
|
StopGame();
|
||||||
|
|
||||||
@ -76,13 +76,11 @@ namespace AxibugEmuOnline.Client
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
NesCore = new NES(rom.FileName);
|
NesCore = new NES(rom.FileName);
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
NesCore = null;
|
NesCore = null;
|
||||||
App.log.Error(ex.ToString());
|
App.log.Error(ex.ToString());
|
||||||
return ex.Message;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -32,6 +32,8 @@
|
|||||||
_Power2("Power",Float)=50.0
|
_Power2("Power",Float)=50.0
|
||||||
_Frequency2("Frequency",Float)=2.1
|
_Frequency2("Frequency",Float)=2.1
|
||||||
_Speed2("Speed",Float)=0.3
|
_Speed2("Speed",Float)=0.3
|
||||||
|
|
||||||
|
_Gamma("GAMMA",float) = 2.2
|
||||||
}
|
}
|
||||||
|
|
||||||
SubShader
|
SubShader
|
||||||
@ -152,6 +154,8 @@
|
|||||||
float _Frequency2;
|
float _Frequency2;
|
||||||
float _Speed2;
|
float _Speed2;
|
||||||
|
|
||||||
|
float _Gamma;
|
||||||
|
|
||||||
fixed4 frag(v2f IN) : SV_Target
|
fixed4 frag(v2f IN) : SV_Target
|
||||||
{
|
{
|
||||||
float2 uv= IN.texcoord;
|
float2 uv= IN.texcoord;
|
||||||
@ -196,6 +200,8 @@
|
|||||||
clip (fragColor.a - 0.001);
|
clip (fragColor.a - 0.001);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
fragColor = pow(fragColor,1/_Gamma);
|
||||||
|
|
||||||
return fragColor;
|
return fragColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -207,7 +207,7 @@ namespace VirtualNes
|
|||||||
{
|
{
|
||||||
for (byte i = 0; i < 8; i++)
|
for (byte i = 0; i < 8; i++)
|
||||||
{
|
{
|
||||||
SetCRAM_1K_Bank(i, bank * 8 + i);
|
SetCRAM_1K_Bank(i, bank * 8 + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -40,7 +40,7 @@ namespace VirtualNes.Core
|
|||||||
irq_latch = 0;
|
irq_latch = 0;
|
||||||
irq_clock = 0;
|
irq_clock = 0;
|
||||||
|
|
||||||
//reg[9] = 1;
|
reg[9] = 1;
|
||||||
|
|
||||||
SetPROM_32K_Bank(0, 1, PROM_8K_SIZE - 2, PROM_8K_SIZE - 1);
|
SetPROM_32K_Bank(0, 1, PROM_8K_SIZE - 2, PROM_8K_SIZE - 1);
|
||||||
SetVROM_8K_Bank(0);
|
SetVROM_8K_Bank(0);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user