-
Notifications
You must be signed in to change notification settings - Fork 8
/
gui.pb
261 lines (230 loc) · 7.93 KB
/
gui.pb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
Define *clickedClient.Client
Procedure RefreshList(var)
Define lstate,listicon,i
If TryLockMutex(RefreshMutex)
lstate=GetGadgetState(#Listview_0)
ClearGadgetItems(#Listview_0)
i=0
LockMutex(ListMutex)
PushMapPosition(Clients())
ResetMap(Clients())
While NextMapElement(Clients())
listicon=Icons(0)
If Clients()\perm
listicon=Icons(1)
EndIf
If Clients()\hack
listicon=Icons(2)
EndIf
AddGadgetItem(#Listview_0,i,Clients()\IP+Chr(10)+GetCharacterName(Clients())+Chr(10)+GetAreaName(Clients())+Chr(10)+Clients()\HD,listicon)
SetGadgetItemData(#Listview_0,i,Clients()\ClientID)
i+1
Wend
UnlockMutex(ListMutex)
PopMapPosition(Clients())
If lstate<CountGadgetItems(#Listview_0)
SetGadgetState(#Listview_0,lstate)
EndIf
UnlockMutex(RefreshMutex)
rf=0
EndIf
EndProcedure
If OpenWindow(2,#PB_Ignore,#PB_Ignore,420,263,"serverD",#PB_Window_BorderLess|#PB_Window_ScreenCentered)
WindowEvent()
WindowEvent()
UsePNGImageDecoder()
CatchImage(3,?dend)
ImageGadget(0,0,0,420,263,ImageID(3))
WindowEvent()
Delay(100)
WindowEvent()
CatchImage(0,?green)
Icons(0)=ImageID(0)
CatchImage(1,?mod)
Icons(1)=ImageID(1)
CatchImage(2,?hacker)
Icons(2)=ImageID(2)
WindowEvent()
Open_Window_0()
LoadSettings(0)
Delay(100)
If LoopMusic
CreateThread(@TrackWait(),0)
EndIf
CloseWindow(2)
EndIf
If ProgramParameter()="-auto"
success=CreateNetworkServer(0,port,#PB_Network_TCP)
If success
SetWindowColor(0, RGB(0,128,0))
SetGadgetText(#Button_2,"RELOAD")
Else
SetWindowColor(0, RGB(128,0,0))
SetGadgetText(#Button_2,"RETRY")
EndIf
If public And msthread=0
msthread=CreateThread(@MasterAdvert(),port)
EndIf
EndIf
;- WINDOW EVENT LOOP
Repeat ; Start of the event loop
Define Event,WindowID,GadgetID,EventType,NStatus
Define lvstate,cldata,ooclient,logclid,b
If success
NStatus=Network(0)
EndIf
Event = WindowEvent() ; This line waits until an event is received from Windows
If Event = #PB_Event_Gadget
WindowID = EventWindow() ; The Window where the event is generated, can be used in the gadget procedures
GadgetID = EventGadget() ; Is it a gadget event?
EventType = EventType() ; The event type
lvstate=GetGadgetState(#Listview_0)
If lvstate>=0
cldata = GetGadgetItemData(#Listview_0,lvstate)
If cldata
LockMutex(ListMutex)
*clickedClient=FindMapElement(Clients(),Str(cldata))
UnlockMutex(ListMutex)
EndIf
Select GadgetID
Case #Button_kk ;KICK
KickBan(Str(cldata),"",#KICK,Server)
cldata=-1
Case #Button_sw ;SWITCH
KickBan(Str(cldata),"",#SWITCH,Server)
Case #Button_mu ;MUTE
Debug cldata
KickBan(Str(cldata),"",#MUTE,Server)
Case #Button_um ;UNMUTE
KickBan(Str(cldata),"",#UNMUTE,Server)
Case #Button_kb ;BAN
KickBan(Str(cldata),"",#BAN,Server)
cldata=-1
Case #Button_hd ;HDBAN
KickBan(*clickedClient\HD,"",#BAN,Server)
cldata=-1
Case #Button_dc ;DISCONNECT
KickBan(Str(cldata),"",#DISCO,Server)
cldata=-1
Case #Button_ig ;IGNORE
KickBan(Str(cldata),"",#CIGNORE,Server)
Case #Button_si ; STOP IGNORING ME
KickBan(Str(cldata),"",#UNIGNORE,Server)
Case #Button_ndj ;IGNORE MUSIC
KickBan(Str(cldata),"",#UNDJ,Server)
Case #Button_dj ; STOP IGNORING MY MUSIC
KickBan(Str(cldata),"",#DJ,Server)
EndSelect
EndIf
Select GadgetID
Case #ListIcon_2
ooclient=GetGadgetItemData(#ListIcon_2,GetGadgetState(#ListIcon_2))
If ooclient
For b=0 To CountGadgetItems(#ListView_0)
If GetGadgetItemData(#ListView_0,b) = ooclient
SetGadgetState(#ListView_0,b)
EndIf
Next
EndIf
Case #listbox_event
logclid=GetGadgetItemData(#listbox_event,GetGadgetState(#listbox_event))
If logclid
For b=0 To CountGadgetItems(#ListView_0)
If GetGadgetItemData(#ListView_0,b) = logclid
SetGadgetState(#ListView_0,b)
EndIf
Next
EndIf
Case #CheckBox_MS
public=GetGadgetState(#CheckBox_MS)
Debug public
If public And msthread=0
msthread=CreateThread(@MasterAdvert(),port)
EndIf
Case #Button_31
AddGadgetItem(#ListIcon_2,-1,Server\username+Chr(10)+GetGadgetText(#String_13))
SendTarget("*","CT#"+Server\username+"#"+GetGadgetText(#String_13)+"#%",Server)
Case #Button_2 ;START
port=Val(GetGadgetText(#String_5))
If success
LoadSettings(1)
Else
success=CreateNetworkServer(0,port,#PB_Network_TCP)
If success
SetWindowColor(0, RGB(0,128,0))
SetGadgetText(#Button_2,"RELOAD")
Else
SetWindowColor(0, RGB(128,0,0))
SetGadgetText(#Button_2,"RETRY")
EndIf
If public And msthread=0
msthread=CreateThread(@MasterAdvert(),port)
EndIf
EndIf
Case #Button_4 ;CONFIG
CreateThread(@ConfigWindow(),0)
Case #Button_Load
ReplayFile$=OpenFileRequester("Open a replay",GetCurrentDirectory()+"/base/replays/","Replays (*.txt)|*.txt|All files (*.*)|*.*",1)
If ReadFile(8, ReplayFile$)
ClearList(PReplay())
ResetList(PReplay())
While Eof(8) = 0
rline$=ReadString(8)
AddElement(PReplay())
ReplayMode=1
PReplay()=rline$
Wend
ResetList(PReplay())
CloseFile(8)
EndIf
Case #Button_About
MessageRequester("serverD","This is serverD version "+Str(#PB_Editor_CompileCount)+"."+Str(#PB_Editor_BuildCount)+Chr(10)+"(c) stonedDiscord 2014-2015"+Chr(10)+"no one helped me with this, especially not FanatSors")
EndSelect
ElseIf Event = #PB_Event_SizeWindow
ResizeGadget(#Frame_0,0,0,WindowWidth(0)/2.517,WindowHeight(0))
ResizeGadget(#ListView_0,70,40,WindowWidth(0)/2.517-70,WindowHeight(0)-40)
ResizeGadget(#Button_2,WindowWidth(0)/6.08,15,WindowWidth(0)/8.111,22)
ResizeGadget(#String_5,WindowWidth(0)/3.476,15,WindowWidth(0)/10.42,22)
ResizeGadget(#Frame_4,WindowWidth(0)/2.517,0,WindowWidth(0)/3.173,WindowHeight(0))
ResizeGadget(#listbox_event, WindowWidth(0)/1.7, 30, WindowWidth(0)-WindowWidth(0)/1.7, WindowHeight(0)-90)
ResizeGadget(#listbox_event,WindowWidth(0)/2.517,20,WindowWidth(0)/3.173,WindowHeight(0)-20)
ResizeGadget(#Frame_5,WindowWidth(0)/1.4,0,WindowWidth(0)/3.476,WindowHeight(0))
ResizeGadget(#ListIcon_2,WindowWidth(0)/1.4,20,WindowWidth(0)/3.476,WindowHeight(0)-40)
ResizeGadget(#String_13,WindowWidth(0)/1.4,WindowHeight(0)-20,WindowWidth(0)/5,20)
ResizeGadget(#Button_31,WindowWidth(0)/1.1,WindowHeight(0)-20,WindowWidth(0)/10,20)
Else
If rf And chill<1
chill=(LagShield+10)*2
If CommandThreading
CreateThread(@RefreshList(),0)
Else
RefreshList(0)
EndIf
EndIf
chill-1
Delay(1)
EndIf
Until Event = #PB_Event_CloseWindow ; End of the event loop
Quit=1
OpenPreferences("base/settings.ini")
PreferenceGroup("net")
WritePreferenceInteger("public",public)
WritePreferenceInteger("port",port)
ClosePreferences()
End
DataSection
green:
IncludeBinary "green.png"
mod:
IncludeBinary "mod.png"
hacker:
IncludeBinary "hacker.png"
dend:
IncludeBinary "splash.png"
bannerend:
EndDataSection
; IDE Options = PureBasic 5.31 (Windows - x86)
; CursorPosition = 255
; FirstLine = 204
; Folding = -
; EnableXP