[Include] gDialog - Easyer way of managing dialogs!
#10

So.. Im using Gamer_Z release, which has same defines at 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
Im using DIALOG:id(..); "way" to create dialogs, so probably I just need

ctrl + h

ShowPlayerDialog(

to

ShowPlayerDialogEx(

and yes to all?
Reply


Messages In This Thread
gDialog - Easyer way of managing dialogs! - by gamer931215 - 04.09.2011, 22:34
Re: gDialog - Easyer way of managing dialogs! - by FireCat - 04.09.2011, 22:36
Re: gDialog - Easyer way of managing dialogs! - by [MNC]Azz - 04.09.2011, 23:31
Re: gDialog - Easyer way of managing dialogs! - by Phanto90 - 04.09.2011, 23:35
Re: gDialog - Easyer way of managing dialogs! - by gamer931215 - 04.09.2011, 23:53
Re: gDialog - Easyer way of managing dialogs! - by Darnell - 05.09.2011, 10:59
Re: gDialog - Easyer way of managing dialogs! - by Kaperstone - 05.09.2011, 15:22
Re: gDialog - Easyer way of managing dialogs! - by Gh0sT_ - 05.09.2011, 15:24
Re: gDialog - Easyer way of managing dialogs! - by Sascha - 06.09.2011, 11:03
Re: gDialog - Easyer way of managing dialogs! - by Gh0sT_ - 06.09.2011, 12:59
Re: gDialog - Easyer way of managing dialogs! - by gamer931215 - 06.09.2011, 14:30
Re: gDialog - Easyer way of managing dialogs! - by Gh0sT_ - 06.09.2011, 15:48
Re: gDialog - Easyer way of managing dialogs! - by Gamer_Z - 08.09.2011, 16:32
Re: gDialog - Easyer way of managing dialogs! - by gamer931215 - 08.09.2011, 16:55
AW: gDialog - Easyer way of managing dialogs! - by Nanory - 08.09.2011, 19:40
Re: gDialog - Easyer way of managing dialogs! - by Gamer_Z - 08.09.2011, 20:24
AW: gDialog - Easyer way of managing dialogs! - by BloodyEric - 08.09.2011, 20:59
Re: gDialog - Easyer way of managing dialogs! - by Gamer_Z - 08.09.2011, 22:42
Re: gDialog - Easyer way of managing dialogs! - by Sasino97 - 09.09.2011, 10:33
Re: gDialog - Easyer way of managing dialogs! - by Gamer_Z - 09.09.2011, 11:37
Re: gDialog - Easyer way of managing dialogs! - by Gamer_Z - 20.09.2011, 15:42
Re: gDialog - Easyer way of managing dialogs! - by [M.A]Angel[M.A] - 20.09.2011, 16:17
Re: gDialog - Easyer way of managing dialogs! - by Hade. - 13.11.2012, 08:10

Forum Jump:


Users browsing this thread: 1 Guest(s)