mirror of
				https://github.com/MaddyThorson/StrawberryBF.git
				synced 2025-11-04 01:41:33 +08:00 
			
		
		
		
	Console commands work
This commit is contained in:
		@ -66,7 +66,7 @@ namespace Strawberry
 | 
			
		||||
			return current >= startDelay && (current - startDelay) % (interval * 2) >= interval;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		static public String StringArgs(String str, Object[] args)
 | 
			
		||||
		static public String StringArgs(String str, params Object[] args)
 | 
			
		||||
		{
 | 
			
		||||
			for (let i < args.Count)
 | 
			
		||||
			{
 | 
			
		||||
@ -119,7 +119,7 @@ namespace Strawberry
 | 
			
		||||
		[Inline]
 | 
			
		||||
		static public void Log(StringView str, params Object[] args)
 | 
			
		||||
		{
 | 
			
		||||
			let string = StringArgs(scope String(str), args);
 | 
			
		||||
			let string = StringArgs(scope String(str), params args);
 | 
			
		||||
			Debug.WriteLine(string);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
@ -85,7 +85,7 @@ namespace Strawberry
 | 
			
		||||
 | 
			
		||||
		static public void Log(StringView str, params Object[] args)
 | 
			
		||||
		{
 | 
			
		||||
			let string = Calc.[Friend]StringArgs(scope String(str), args);
 | 
			
		||||
			let string = Calc.[Friend]StringArgs(scope String(str), params args);
 | 
			
		||||
			Log(string);
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
@ -185,16 +185,21 @@ namespace Strawberry
 | 
			
		||||
 | 
			
		||||
			public void Call(String[] args)
 | 
			
		||||
			{
 | 
			
		||||
				let objs = scope Object[Method.ParamCount];
 | 
			
		||||
				for (let i < objs.Count)
 | 
			
		||||
				if (Method.ParamCount == 0)
 | 
			
		||||
					Method.Invoke(null);
 | 
			
		||||
				else
 | 
			
		||||
				{
 | 
			
		||||
					if (i < args.Count)
 | 
			
		||||
						objs[i] = Convert(args[i], Method.GetParamType(i));
 | 
			
		||||
					else
 | 
			
		||||
						objs[i] = Method.GetParamType(i).CreateValueDefault();
 | 
			
		||||
					let objs = scope Object[Method.ParamCount];
 | 
			
		||||
					for (let i < objs.Count)
 | 
			
		||||
					{
 | 
			
		||||
						if (i < args.Count)
 | 
			
		||||
							objs[i] = Convert(args[i], Method.GetParamType(i));
 | 
			
		||||
						else
 | 
			
		||||
							objs[i] = Method.GetParamType(i).CreateValueDefault();
 | 
			
		||||
					}
 | 
			
		||||
	
 | 
			
		||||
					Method.Invoke(null, params objs);
 | 
			
		||||
				}
 | 
			
		||||
 | 
			
		||||
				Method.Invoke(null, objs);
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user