修复一些奇怪的命名空间引用 移除冗余的package

This commit is contained in:
ALIENJACK\alien 2024-11-21 16:53:05 +08:00
parent 6faa42c767
commit 34e9090446
10 changed files with 30 additions and 185 deletions

View File

@ -87,8 +87,6 @@ namespace AxibugEmuOnline.Client
public Mapper START = new Mapper(EnumButtonType.START);
public Mapper MIC = new Mapper(EnumButtonType.MIC);
public EnumButtonType GetButtons()
{
EnumButtonType res = 0;

View File

@ -1,9 +1,4 @@
using Codice.CM.Client.Differences;
using System;
using RECTANGLE = VirtualNes.Core.APU_VRC6.RECTANGLE;
using SAWTOOTH = VirtualNes.Core.APU_VRC6.SAWTOOTH;
namespace VirtualNes.Core
namespace VirtualNes.Core
{
public class APU_N106 : APU_INTERFACE
{
@ -144,7 +139,7 @@ namespace VirtualNes.Core
int temp = channel_use * (8 - ch.databuf) * 4 * 45;
if (temp == 0)
return 0;
return (int)(256.0 * (double)cpu_clock * 12.0 * ch.freq / ((double)0x40000 * temp));
return (int)(256.0 * cpu_clock * 12.0 * ch.freq / ((double)0x40000 * temp));
}
return 0;

View File

@ -1,5 +1,4 @@
using Codice.CM.Client.Differences;
using VirtualNes.Core;
using VirtualNes.Core;
namespace VirtualNes
{

View File

@ -1,7 +1,6 @@
//////////////////////////////////////////////////////////////////////////
// Mapper173 Subor //
//////////////////////////////////////////////////////////////////////////
using Codice.CM.Client.Differences;
using VirtualNes.Core.Debug;
using static VirtualNes.MMU;
using BYTE = System.Byte;
@ -92,7 +91,7 @@ namespace VirtualNes.Core
irq_repeat = (byte)(data & 0x01);
irq_enable = (byte)(data & 0x02);
irq_occur = 0;
if (irq_enable!= null)
if (irq_enable != null)
{
irq_counter = irq_latch;
}
@ -109,7 +108,7 @@ namespace VirtualNes.Core
case 0x4035:
reg[7] = data;
irq_latch = (irq_latch & 0x00FF) | ((ushort)data << 8);
irq_latch = (irq_latch & 0x00FF) | (data << 8);
break;
case 0x4040:
SetPROM_4K_Bank(0x8000, data & 0x7F);
@ -177,7 +176,7 @@ namespace VirtualNes.Core
public override void Clock(int cycles)
{
if (irq_enable!= 0)
if (irq_enable != 0)
{
irq_counter -= cycles;
if (irq_counter <= 0)

View File

@ -1,12 +1,7 @@
using Codice.CM.Client.Differences;
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.ConstrainedExecution;
using System.Runtime.InteropServices.ComTypes;
using System.Security.Cryptography;
using System.Text;
using UnityEngine;
using VirtualNes.Core.Debug;
namespace VirtualNes.Core
@ -1228,7 +1223,7 @@ namespace VirtualNes.Core
return;
}
if ((m_TapeCycles -= (double)cycles) > 0)
if ((m_TapeCycles -= cycles) > 0)
return;
m_TapeCycles += (nescfg.CpuClock / 32000.0);

View File

@ -1,6 +1,4 @@
using Codice.CM.Client.Differences;
using System;
using System.Collections.Generic;
using System.Collections.Generic;
namespace VirtualNes.Core
{

View File

@ -1,8 +1,5 @@
using Codice.CM.Client.Differences;
using System;
using System.Runtime.CompilerServices;
using System;
using System.Runtime.InteropServices;
using UnityEngine.UIElements;
namespace VirtualNes.Core
{

View File

@ -1,7 +1,4 @@
using Codice.CM.Client.Differences;
using System;
namespace VirtualNes.Core
namespace VirtualNes.Core
{
public struct CTRSTAT : IStateBufferObject
{

View File

@ -1,21 +1,8 @@
{
"dependencies": {
"com.unity.2d.sprite": "1.0.0",
"com.unity.2d.tilemap": "1.0.0",
"com.unity.ads": "3.7.5",
"com.unity.analytics": "3.6.12",
"com.unity.collab-proxy": "1.15.15",
"com.unity.editorcoroutines": "1.0.0",
"com.unity.ide.rider": "3.0.13",
"com.unity.ide.visualstudio": "2.0.14",
"com.unity.ide.vscode": "1.2.5",
"com.unity.purchasing": "4.1.3",
"com.unity.test-framework": "1.1.31",
"com.unity.textmeshpro": "3.0.6",
"com.unity.timeline": "1.6.4",
"com.unity.ide.visualstudio": "2.0.22",
"com.unity.ugui": "1.0.0",
"com.unity.visualscripting": "1.7.6",
"com.unity.xr.legacyinputhelpers": "2.1.9",
"com.unity.modules.ai": "1.0.0",
"com.unity.modules.androidjni": "1.0.0",
"com.unity.modules.animation": "1.0.0",

View File

@ -6,64 +6,15 @@
"source": "builtin",
"dependencies": {}
},
"com.unity.2d.tilemap": {
"version": "1.0.0",
"depth": 0,
"source": "builtin",
"dependencies": {}
},
"com.unity.ads": {
"version": "3.7.5",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.ugui": "1.0.0"
},
"url": "https://packages.unity.cn"
},
"com.unity.analytics": {
"version": "3.6.12",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.ugui": "1.0.0"
},
"url": "https://packages.unity.cn"
},
"com.unity.collab-proxy": {
"version": "1.15.15",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.services.core": "1.0.1"
},
"url": "https://packages.unity.cn"
},
"com.unity.editorcoroutines": {
"version": "1.0.0",
"depth": 0,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.cn"
},
"com.unity.ext.nunit": {
"version": "1.0.6",
"depth": 1,
"depth": 2,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.cn"
},
"com.unity.ide.rider": {
"version": "3.0.13",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.ext.nunit": "1.0.6"
},
"url": "https://packages.unity.cn"
},
"com.unity.ide.visualstudio": {
"version": "2.0.14",
"version": "2.0.22",
"depth": 0,
"source": "registry",
"dependencies": {
@ -71,39 +22,9 @@
},
"url": "https://packages.unity.cn"
},
"com.unity.ide.vscode": {
"version": "1.2.5",
"depth": 0,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.cn"
},
"com.unity.purchasing": {
"version": "4.1.3",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.ugui": "1.0.0",
"com.unity.modules.unityanalytics": "1.0.0",
"com.unity.modules.unitywebrequest": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0",
"com.unity.modules.androidjni": "1.0.0",
"com.unity.services.core": "1.0.1"
},
"url": "https://packages.unity.cn"
},
"com.unity.services.core": {
"version": "1.0.1",
"depth": 1,
"source": "registry",
"dependencies": {
"com.unity.modules.unitywebrequest": "1.0.0"
},
"url": "https://packages.unity.cn"
},
"com.unity.test-framework": {
"version": "1.1.31",
"depth": 0,
"depth": 1,
"source": "registry",
"dependencies": {
"com.unity.ext.nunit": "1.0.6",
@ -112,27 +33,6 @@
},
"url": "https://packages.unity.cn"
},
"com.unity.textmeshpro": {
"version": "3.0.6",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.ugui": "1.0.0"
},
"url": "https://packages.unity.cn"
},
"com.unity.timeline": {
"version": "1.6.4",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.modules.director": "1.0.0",
"com.unity.modules.animation": "1.0.0",
"com.unity.modules.audio": "1.0.0",
"com.unity.modules.particlesystem": "1.0.0"
},
"url": "https://packages.unity.cn"
},
"com.unity.ugui": {
"version": "1.0.0",
"depth": 0,
@ -142,26 +42,6 @@
"com.unity.modules.imgui": "1.0.0"
}
},
"com.unity.visualscripting": {
"version": "1.7.6",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.ugui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0"
},
"url": "https://packages.unity.cn"
},
"com.unity.xr.legacyinputhelpers": {
"version": "2.1.9",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.modules.vr": "1.0.0",
"com.unity.modules.xr": "1.0.0"
},
"url": "https://packages.unity.cn"
},
"com.unity.modules.ai": {
"version": "1.0.0",
"depth": 0,