207 lines
12 KiB
C#
207 lines
12 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Cpp2IlInjected;
|
|
using UnityEngine;
|
|
|
|
// Token: 0x02000109 RID: 265
|
|
[Token(Token = "0x2000109")]
|
|
public class NullChargeTrack : MonoBehaviour
|
|
{
|
|
// Token: 0x1700003C RID: 60
|
|
// (get) Token: 0x06000D6C RID: 3436 RVA: 0x0001F8C0 File Offset: 0x0001DAC0
|
|
[Token(Token = "0x1700003C")]
|
|
protected GameSave GameSave
|
|
{
|
|
[Token(Token = "0x6000D6C")]
|
|
[Address(RVA = "0xF20A20", Offset = "0xF1FA20", VA = "0x180F20A20")]
|
|
get
|
|
{
|
|
return Game.GameSave;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06000D6D RID: 3437 RVA: 0x0001F8D4 File Offset: 0x0001DAD4
|
|
[Token(Token = "0x6000D6D")]
|
|
[Address(RVA = "0xF1F320", Offset = "0xF1E320", VA = "0x180F1F320")]
|
|
public void Start()
|
|
{
|
|
ParticleSystem component = base.GetComponent<ParticleSystem>();
|
|
this.g_PS = component;
|
|
ParticleSystem particleSystem = this.g_PS;
|
|
int num = 0;
|
|
if (particleSystem == num)
|
|
{
|
|
Debug.LogError(base.transform.name + " 特效錯誤");
|
|
}
|
|
AttackData component2 = base.GetComponent<AttackData>();
|
|
this.g_AData = component2;
|
|
AttackData attackData = this.g_AData;
|
|
int num2 = 0;
|
|
if (attackData == num2)
|
|
{
|
|
Debug.LogError(base.transform.name + " 攻擊資料錯誤");
|
|
}
|
|
List<int> list = new List();
|
|
this.g_iExclude = list;
|
|
this.g_bCollision = false;
|
|
}
|
|
|
|
// Token: 0x06000D6E RID: 3438 RVA: 0x000020D3 File Offset: 0x000002D3
|
|
[Token(Token = "0x6000D6E")]
|
|
[Address(RVA = "0xF1F540", Offset = "0xF1E540", VA = "0x180F1F540", Slot = "4")]
|
|
protected virtual void Update()
|
|
{
|
|
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
|
}
|
|
|
|
// Token: 0x06000D6F RID: 3439 RVA: 0x0001F978 File Offset: 0x0001DB78
|
|
[Token(Token = "0x6000D6F")]
|
|
[Address(RVA = "0x63DF80", Offset = "0x63CF80", VA = "0x18063DF80")]
|
|
public void SetCollisionEffect(EffectPool Effect)
|
|
{
|
|
/*
|
|
An exception occurred when decompiling this method (06000D6F)
|
|
|
|
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Void NullChargeTrack::SetCollisionEffect(EffectPool)
|
|
|
|
---> System.Exception: Basic block has to end with unconditional control flow.
|
|
{; Block_0:; stfld:EffectPool(NullChargeTrack::g_CollisionPool, ldloc:NullChargeTrack(this), ldloc:EffectPool(Effect)); };
|
|
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1810
|
|
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 344
|
|
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
|
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
|
--- End of inner exception stack trace ---
|
|
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
|
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1618
|
|
*/;
|
|
}
|
|
|
|
// Token: 0x06000D70 RID: 3440 RVA: 0x0001F98C File Offset: 0x0001DB8C
|
|
[Token(Token = "0x6000D70")]
|
|
[Address(RVA = "0x5E87F0", Offset = "0x5E77F0", VA = "0x1805E87F0")]
|
|
public void SetSECollision(SoundEffectPool SE)
|
|
{
|
|
/*
|
|
An exception occurred when decompiling this method (06000D70)
|
|
|
|
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Void NullChargeTrack::SetSECollision(SoundEffectPool)
|
|
|
|
---> System.Exception: Basic block has to end with unconditional control flow.
|
|
{; Block_0:; stfld:SoundEffectPool(NullChargeTrack::g_SECollision, ldloc:NullChargeTrack(this), ldloc:SoundEffectPool(SE)); };
|
|
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1810
|
|
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 344
|
|
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
|
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
|
--- End of inner exception stack trace ---
|
|
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
|
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1618
|
|
*/;
|
|
}
|
|
|
|
// Token: 0x06000D71 RID: 3441 RVA: 0x0001F9A0 File Offset: 0x0001DBA0
|
|
[Token(Token = "0x6000D71")]
|
|
[Address(RVA = "0x5549C0", Offset = "0x5539C0", VA = "0x1805549C0")]
|
|
public void SetSECollisionWall(SoundEffectPool SE)
|
|
{
|
|
/*
|
|
An exception occurred when decompiling this method (06000D71)
|
|
|
|
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Void NullChargeTrack::SetSECollisionWall(SoundEffectPool)
|
|
|
|
---> System.Exception: Basic block has to end with unconditional control flow.
|
|
{; Block_0:; stfld:SoundEffectPool(NullChargeTrack::g_SECollisionWall, ldloc:NullChargeTrack(this), ldloc:SoundEffectPool(SE)); };
|
|
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1810
|
|
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 344
|
|
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
|
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
|
--- End of inner exception stack trace ---
|
|
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
|
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1618
|
|
*/;
|
|
}
|
|
|
|
// Token: 0x06000D72 RID: 3442 RVA: 0x000020D3 File Offset: 0x000002D3
|
|
[Token(Token = "0x6000D72")]
|
|
[Address(RVA = "0xF1F1A0", Offset = "0xF1E1A0", VA = "0x180F1F1A0", Slot = "5")]
|
|
public virtual void SetTarget(Vector3 v3Target)
|
|
{
|
|
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
|
}
|
|
|
|
// Token: 0x06000D73 RID: 3443 RVA: 0x0001F9B4 File Offset: 0x0001DBB4
|
|
[Token(Token = "0x6000D73")]
|
|
[Address(RVA = "0x9F9550", Offset = "0x9F8550", VA = "0x1809F9550")]
|
|
public void SetLife(float fLife)
|
|
{
|
|
this.g_fLife = fLife;
|
|
}
|
|
|
|
// Token: 0x06000D74 RID: 3444 RVA: 0x000020D3 File Offset: 0x000002D3
|
|
[Token(Token = "0x6000D74")]
|
|
[Address(RVA = "0xF209E0", Offset = "0xF1F9E0", VA = "0x180F209E0")]
|
|
public NullChargeTrack()
|
|
{
|
|
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
|
}
|
|
|
|
// Token: 0x04001652 RID: 5714
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4001652")]
|
|
protected ParticleSystem g_PS;
|
|
|
|
// Token: 0x04001653 RID: 5715
|
|
[FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x4001653")]
|
|
protected AttackData g_AData;
|
|
|
|
// Token: 0x04001654 RID: 5716
|
|
[FieldOffset(Offset = "0x28")]
|
|
[Token(Token = "0x4001654")]
|
|
protected Vector3 g_Direction;
|
|
|
|
// Token: 0x04001655 RID: 5717
|
|
[FieldOffset(Offset = "0x34")]
|
|
[Token(Token = "0x4001655")]
|
|
protected Vector3 g_PrePosition;
|
|
|
|
// Token: 0x04001656 RID: 5718
|
|
[FieldOffset(Offset = "0x40")]
|
|
[Token(Token = "0x4001656")]
|
|
protected bool g_bCollision;
|
|
|
|
// Token: 0x04001657 RID: 5719
|
|
[FieldOffset(Offset = "0x44")]
|
|
[Token(Token = "0x4001657")]
|
|
public float g_fSpeed;
|
|
|
|
// Token: 0x04001658 RID: 5720
|
|
[FieldOffset(Offset = "0x48")]
|
|
[Token(Token = "0x4001658")]
|
|
public Vector3 g_v3Size;
|
|
|
|
// Token: 0x04001659 RID: 5721
|
|
[FieldOffset(Offset = "0x54")]
|
|
[Token(Token = "0x4001659")]
|
|
protected float g_fLife;
|
|
|
|
// Token: 0x0400165A RID: 5722
|
|
[FieldOffset(Offset = "0x58")]
|
|
[Token(Token = "0x400165A")]
|
|
protected List<int> g_iExclude;
|
|
|
|
// Token: 0x0400165B RID: 5723
|
|
[FieldOffset(Offset = "0x60")]
|
|
[Token(Token = "0x400165B")]
|
|
protected EffectPool g_CollisionPool;
|
|
|
|
// Token: 0x0400165C RID: 5724
|
|
[FieldOffset(Offset = "0x68")]
|
|
[Token(Token = "0x400165C")]
|
|
protected SoundEffectPool g_SECollision;
|
|
|
|
// Token: 0x0400165D RID: 5725
|
|
[FieldOffset(Offset = "0x70")]
|
|
[Token(Token = "0x400165D")]
|
|
protected SoundEffectPool g_SECollisionWall;
|
|
}
|