[Include] [I-ZCMD]Improved ZCMD - Fastest Command Processor
#37

#1 Your processor is case-sensitive. iZCMD case-sensitive version is 7x faster than your code.

I am sure that you still don't understand the difference between using natives and writing plain PAWN code.

#2 Even if you compare your code with iZCMD non-case-sensitive (ZCMD is non-case-sensitive), yours is still slightly slower! (just 1.0097x slower but anyway its slower inspite of doing less work than iZCMD)

#3 The correct spelling of re-ce-ived is "received" not "recieved"

#4 Your code doesn't even work! Do you know what static means? The data is saved after the function ends. You are not adding a null character at the end of the "function". Shouldn't it be zero by default? No! Static arrays are global arrays with limited scope so its not filled with zeros unlike local arrays which are filled with zeros when they are added to the heap.

#5 iZCMD code is almost identical to your code. You have used a 'switch' whereas iZCMD uses 'if..else'.

And to finish the reply with another blow, if else is faster than switch in this case!

Here is your fixed code:
Код:
#define CMD:%1(%2) \
			forward cmd_%1(%2); public cmd_%1(%2)

public OnPlayerCommandText(playerid, cmdtext[])
{
    #if defined OnPlayerCommandRecieved
		if (!OnPlayerCommandRecieved(playerid, cmdtext))
		    return 1;
	#endif

	static function[31] = "cmd_";

	for (new i = 1; ; i++)
	{
	    switch (cmdtext[i])
	    {
	        case ' ':
	        {
		        if (cmdtext[(i+1)] == EOS)
		        {
		            function[((i-1) + 3)] = 0;
		            break;
		        }

				#if defined OnPlayerCommandPerformed
					return OnPlayerCommandPerformed(playerid, function[4], cmdtext[(i+1)], CallLocalFunction(function, "is", playerid, cmdtext[(i+1)]));
				#else
					return CallLocalFunction(function, "is", playerid, cmdtext[(i+1)]);
				#endif
	        }

	        case EOS:
	        {
	            function[((i-1) + 4)] = 0;
				break;
	        }

	        default:
	        {
				function[((i-1) + 4)] = cmdtext[i];
	        }
	    }
	}

	#if defined OnPlayerCommandPerformed
		return OnPlayerCommandPerformed(playerid, function[4], "\1", CallLocalFunction(function, "is", playerid, "\1"));
	#else
		return CallLocalFunction(function, "is", playerid, "\1");
	#endif
}

#if defined OnPlayerCommandReceived
   forward OnPlayerCommandReceived(playerid, cmdtext[]);
#endif

#if defined OnPlayerCommandPerformed
	forward OnPlayerCommandPerformed(playerid, cmdtext[], params[], response);
#endif
#6 If I really want to make iZCMD even faster, I can do it by making insane optimizations which murder the readablity completely.

Код:
static prefix[] = {'c', 'm', 'd'}, funcname[32] ="_";
No need for jumping between indexs if that is used ^

Can add shitton of assembly code to get rid of all redudent index calculations.

I can approximate that I can make iZCMD code 50% faster but its simply ridiculous to do all those kind of optimizations.
Reply


Messages In This Thread
[I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 01.06.2015, 07:02
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by SickAttack - 01.06.2015, 07:19
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Manyula - 01.06.2015, 09:18
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by HydraHumza - 01.06.2015, 09:36
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by SickAttack - 01.06.2015, 14:51
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by PT - 01.06.2015, 17:26
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Pottus - 01.06.2015, 18:06
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by hamzajaved780 - 01.06.2015, 18:37
AW: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Mellnik - 01.06.2015, 19:05
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Pottus - 01.06.2015, 19:39
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by PeterJane - 06.06.2015, 11:01
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by admantis - 06.06.2015, 18:12
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Ritzy2K - 06.06.2015, 18:34
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 07.06.2015, 02:46
Respuesta: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Zume - 07.06.2015, 22:01
Re: Respuesta: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by SickAttack - 07.06.2015, 22:10
Re: Respuesta: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 08.06.2015, 15:10
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Pottus - 14.06.2015, 04:15
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by n0minal - 14.06.2015, 04:55
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 14.06.2015, 05:47
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by DRIFT_HUNTER - 14.06.2015, 05:54
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by WLSF - 14.06.2015, 10:17
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by RaeF - 14.06.2015, 10:31
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 14.06.2015, 15:06
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Crayder - 25.03.2016, 07:32
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 25.03.2016, 09:22
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Kar - 25.03.2016, 09:35
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 25.03.2016, 09:50
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Zorono - 16.06.2016, 19:52
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 06.07.2016, 13:42
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Untonyst - 14.07.2016, 07:54
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 15.07.2016, 13:36
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Arithmetic - 15.07.2016, 18:13
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 15.07.2016, 18:20
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 01.08.2016, 14:37
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Gammix - 01.08.2016, 15:35
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yashas - 02.08.2016, 07:20
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Romz - 19.10.2016, 20:18
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Yousha - 19.10.2016, 20:31
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Crayder - 20.10.2016, 04:15
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Command - 30.04.2017, 16:19
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by AbyssMorgan - 30.04.2017, 16:23
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Command - 30.04.2017, 16:49
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by feheristi97 - 23.07.2017, 16:23
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by Deken - 28.12.2018, 19:01
Re: [I-ZCMD]Improved ZCMD - Fastest Command Processor - by cuber - 28.12.2018, 20:12

Forum Jump:


Users browsing this thread: 1 Guest(s)