G2D: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 9: Line 9:


===<span style="color:#000000;text-shadow:0.05em 0.05em 0.2em #00000099;">Usage</span>===
===<span style="color:#000000;text-shadow:0.05em 0.05em 0.2em #00000099;">Usage</span>===
<big>'''Server-sided G2D script converter (G2DSC)'''</big>
<big>'''Server-sided G2D script converter (G2DSC)'''</big><br>
Command: g2d [-Option] [Arguments]
Command: g2d [-Option] [Arguments]
{| class="wikitable" style="width: 800px; text-align: center; table-layout: fixed;"
{| class="wikitable" style="width: 800px; text-align: center; table-layout: fixed;"
Line 30: Line 30:
|-
|-
| -rm
| -rm
|Remove Name
|Resource Name
|Remove specific selected resources from list  (-m :Pattern Match)
|Remove specific selected resources from list  (-m :Pattern Match)
|-
|-
Line 46: Line 46:
|-
|-


'''Example'''  
'''Example'''<br>
These command is used in MTA Server console.
These command is used in MTA Server console.


Line 62: Line 62:


Output files are stored in '''dgs/G2DOutput/'''
Output files are stored in '''dgs/G2DOutput/'''
<br>
<br>


'''Client-sided G2D Hooker (G2D Hooker)'''
<big>'''Client-sided G2D Hooker (G2D Hooker)'''</big>


===Example===  
===Example===  

Revision as of 14:27, 28 September 2019

Description

1. G2D aims to convert GUI to DGS without a lot of complex steps. 2. There are 2 versions of G2D:

  • 1) Server-sided G2D script converter (G2DSC)
    • G2DSC is used to convert GUI functions/events to DGS ones by editing scripts. (Useful for converting scripts created by GUI Editor, but it will cause a lot of errors/bugs if you make it convert complicated scripts)
  • 2) Client-sided G2D hooker (G2D Hooker)
    • G2D Hooker is used to convert complex scripts by injecting hooker before executing the script instead of editing files. (The hooker is valid in one resource)

Usage

Server-sided G2D script converter (G2DSC)
Command: g2d [-Option] [Arguments]

Example
These command is used in MTA Server console. Basic:
g2d -add resA
g2d -e

Advanced:

g2d -add .A -m
g2d -e

Output files are stored in dgs/G2DOutput/

Client-sided G2D Hooker (G2D Hooker)

Example

loadstring(exports.dgs:dgsImportFunction())() --Import functions before
loadstring(exports.dgs:dgsG2DLoadHooker())()  --Load G2D Hooker
local buttonElement = guiCreateButton(200,200,300,300,"Test",false)  --Though you are using gui functions and events, but they have already hooked by DGS
addEventHandler ( "onClientGUIClick", buttonElement, function()
	outputChatBox("clicked")
end, false )
Options Arguments Comment
-add Resource Name Retain selections and select other resources (-m :Pattern Match)
-c Clear selections
-h G2D Help
-rm Resource Name Remove specific selected resources from list (-m :Pattern Match)
-l List all selected resources
-e Start to convert
-q Stop converting process