06.09.2011, 12:59
So.. Im using Gamer_Z release, which has same defines at all..
Im using DIALOG:id(..); "way" to create dialogs, so probably I just need
ctrl + h
ShowPlayerDialog(
to
ShowPlayerDialogEx(
and yes to all?
pawn Код:
/*
* Fast Dialog Processing System
*
* Version 1.1
*
* By Gamer_Z
*
* for SSI (SA-MP Server Includes)
*
* Released under MPL v1.1
*
* A copy of the license can be obtained at
* http://www.mozilla.org/MPL/MPL-1.1.txt
*
*/
//#define FDLG_NO_DISABLE_CALLBACK
//#define FDLG_USE_YSI_HOOK
#include <a_samp>
#if defined _FAST_DIALOG_INCLUDED_
#endinput
#else
#define _FAST_DIALOG_INCLUDED_
#endif
#if !defined isnull
#define isnull(%1) \
((!(%1[0])) || (((%1[0]) == '\1') && (!(%1[1]))))
#endif
//Own Definition Dialog
//Usage:: DIALOG:dialogid(playerid,response,listitem,inputtext[])
#define DIALOG:%1(%2,%3,%4,%5) \
forward GDialog_%1(%2,%3,%4,%5);\
public GDialog_%1(%2,%3,%4,%5)
//FastDialog
//Usage:: fDialog(dialogid)
#define fDialog(%1) \
forward GDialog_%1(playerid,response,listitem,inputtext[]);\
public GDialog_%1(playerid,response,listitem,inputtext[])
new g__FDLG_PRIV_CALLBACK[24];
#if defined FDLG_USE_YSI_HOOK
#include <YSI/y_hooks>
#if defined FDLG_NO_DISABLE_CALLBACK
Hook:FastDialog_OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
format(g__FDLG_PRIV_CALLBACK,24,"GDialog_%d",dialogid);
if(isnull(inputtext))format(inputtext,2,"\1");
if(funcidx(g__FDLG_PRIV_CALLBACK) != -1)
{
return CallLocalFunction(g__FDLG_PRIV_CALLBACK,"iiis",playerid,response,listitem,inputtext);
}
return CallLocalFunction("_ALS_OnDialogResponse","iiiis",playerid, dialogid, response, listitem, inputtext);
//return 1;
}
#else
Hook:FastDialog_OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
format(g__FDLG_PRIV_CALLBACK,24,"GDialog_%d",dialogid);
if(isnull(inputtext))format(inputtext,2,"\1");
return CallLocalFunction(g__FDLG_PRIV_CALLBACK,"iiis",playerid,response,listitem,inputtext);
}
#endif
#else
#if defined FDLG_NO_DISABLE_CALLBACK
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
format(g__FDLG_PRIV_CALLBACK,24,"GDialog_%d",dialogid);
if(isnull(inputtext))format(inputtext,2,"\1");
if(funcidx(g__FDLG_PRIV_CALLBACK) != -1)
{
return CallLocalFunction(g__FDLG_PRIV_CALLBACK,"iiis",playerid,response,listitem,inputtext);
}
return CallLocalFunction("FDLG_OnDialogResponse","iiiis",playerid,dialogid,response,listitem,inputtext);
}
forward FDLG_OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]);
#define OnDialogResponse FDLG_OnDialogResponse
#else
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
format(g__FDLG_PRIV_CALLBACK,24,"GDialog_%d",dialogid);
if(isnull(inputtext))format(inputtext,2,"\1");
return CallLocalFunction(g__FDLG_PRIV_CALLBACK,"iiis",playerid,response,listitem,inputtext);
}
forward DisabledPublicByFastDialog(playerid, dialogid, response, listitem, inputtext[]);
#define OnDialogResponse DisabledPublicByFastDialog
#endif
#endif
ctrl + h
ShowPlayerDialog(
to
ShowPlayerDialogEx(
and yes to all?