[Plugin] Python
#19

I think color tuple order is backwards: i.e. (A,G,B,R) instead of (R,G,B,A). My color values other than white weren't displaying correctly, so I wrote a command to test stuff easily.

Код:
def OnPlayerCommandText(playerid, cmdtext):
    cmd = cmdtext.split(' ')
    if cmd[0] == "/colortest":
        if len(cmd) == 5:
            color = (int(cmd[1]),int(cmd[2]),int(cmd[3]),int(cmd[4]))
            SendClientMessage(playerid,color,"** This is color 0x%02x%02x%02x%02x - this is its Python tuple form: %s" % (color[0],color[1],color[2],color[3],str(color)))
        return True
I got these results:



EDIT: A simple fix was editing _getColor in nativefunctions.h and recompiling, though the DLL it spat out was more than twice the size as the provided one. You just reverse the order of the array elements, from

Код:
	PyArg_ParseTuple(pyobj, "bbbb", &col[0], &col[1], &col[2], &col[3]); \
to

Код:
	PyArg_ParseTuple(pyobj, "bbbb", &col[3], &col[2], &col[1], &col[0]); \
I'm not sure how big a hack this is.
Reply


Messages In This Thread
Python - by Fabsch - 25.12.2010, 19:37
Re: Python - by [L3th4l] - 25.12.2010, 19:57
Re: Python - by HyperZ - 25.12.2010, 20:24
Re: Python - by Guest3598475934857938411 - 25.12.2010, 20:31
Respuesta: Python - by anonymousx - 25.12.2010, 21:56
Re: Python - by Retardedwolf - 25.12.2010, 22:02
Re: Python - by Mean - 25.12.2010, 22:09
Re: Python - by mkr - 26.12.2010, 08:47
Re: Python - by Wyu - 26.12.2010, 09:00
AW: Python - by Fabsch - 27.12.2010, 18:39
Re: Python - by yass0016 - 29.12.2010, 23:43
Re: Python - by _rAped - 30.12.2010, 00:11
Re: Python - by Lorenc_ - 30.12.2010, 00:28
Re: Python - by TheRob - 30.12.2010, 01:00
Re: Python - by Retardedwolf - 30.12.2010, 01:12
Re: Python - by mkr - 30.12.2010, 08:20
AW: Re: Python - by Fabsch - 30.12.2010, 14:08
Re: Python - by Retardedwolf - 30.12.2010, 19:22
Re: Python - by mkr - 05.01.2011, 22:18
AW: Python - by Fabsch - 06.01.2011, 13:35
Re: Python - by Leeroy. - 06.01.2011, 13:49
Re: Python - by GaGlets(R) - 06.01.2011, 14:47
AW: Python - by Fabsch - 06.01.2011, 15:55
Re: Python - by Wyu - 06.01.2011, 16:37
Re: Python - by ToPhrESH - 09.01.2011, 03:21
Re: Python - by TheYoungCapone - 09.01.2011, 03:50
AW: Re: Python - by Fabsch - 09.01.2011, 18:41
Re: Python - by mkr - 21.05.2011, 02:35
AW: Re: Python - by Fabsch - 21.05.2011, 16:11
Re: Python - by Sfinx_17 - 24.07.2011, 23:01
Re: Python - by GangsTa_ - 25.07.2011, 07:29
AW: Re: Python - by Fabsch - 25.07.2011, 10:38
Re: Python - by Sfinx_17 - 26.07.2011, 18:23
AW: Python - by Fabsch - 28.07.2011, 13:12
Re: Python - by Trenico - 19.01.2012, 22:12
AW: Python - by Fabsch - 20.01.2012, 11:17
Re: Python - by gephaest - 20.01.2012, 22:34
Re: Python - by Deskoft - 20.01.2012, 23:17
AW: Python - by NaS - 20.01.2012, 23:57
Re: Python - by gephaest - 21.01.2012, 08:30
AW: Python - by NaS - 22.01.2012, 00:02
AW: Python - by Fabsch - 22.01.2012, 11:31

Forum Jump:


Users browsing this thread: 1 Guest(s)