forked from kibook/pmms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.lua
1721 lines (1363 loc) · 41.7 KB
/
client.lua
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local mediaPlayers = {}
local localMediaPlayers = {}
local usableEntities = {}
local personalMediaPlayers = {}
local baseVolume = 50
local statusIsShown = false
local uiIsOpen = false
local syncIsEnabled = true
local tooltipsEnabled = true
local staticEmittersDisabled = false
local disableIdleCam = false
local permissions = {}
permissions.interact = false
permissions.anyEntity = false
permissions.customUrl = false
permissions.anyUrl = false
permissions.manage = false
RegisterNetEvent("pmms:sync")
RegisterNetEvent("pmms:start")
RegisterNetEvent("pmms:play")
RegisterNetEvent("pmms:stop")
RegisterNetEvent("pmms:showControls")
RegisterNetEvent("pmms:toggleStatus")
RegisterNetEvent("pmms:error")
RegisterNetEvent("pmms:init")
RegisterNetEvent("pmms:reset")
RegisterNetEvent("pmms:startClosestMediaPlayer")
RegisterNetEvent("pmms:pauseClosestMediaPlayer")
RegisterNetEvent("pmms:stopClosestMediaPlayer")
RegisterNetEvent("pmms:listPresets")
RegisterNetEvent("pmms:setBaseVolume")
RegisterNetEvent("pmms:showBaseVolume")
RegisterNetEvent("pmms:loadPermissions")
RegisterNetEvent("pmms:loadSettings")
RegisterNetEvent("pmms:notify")
RegisterNetEvent("pmms:enableEntity")
RegisterNetEvent("pmms:disableEntity")
RegisterNetEvent("pmms:refreshPermissions")
local function notify(args)
if type(args) ~= "table" then
args = {}
end
if not args.title then
args.title = GetCurrentResourceName()
end
if not args.duration then
args.duration = Config.notificationDuration;
end
SendNUIMessage({
type = "showNotification",
args = args
})
end
local function doesEntityExist(entity)
if type(entity) ~= "number" or entity < 0 or entity > 999999999 then
return false
else
return DoesEntityExist(entity)
end
end
local entityEnumerator = {
__gc = function(enum)
if enum.destructor and enum.handle then
enum.destructor(enum.handle)
end
enum.destructor = nil
enum.handle = nil
end
}
local function enumerateEntities(firstFunc, nextFunc, endFunc)
return coroutine.wrap(function()
local iter, id = firstFunc()
if not id or id == 0 then
endFunc(iter)
return
end
local enum = {handle = iter, destructor = endFunc}
setmetatable(enum, entityEnumerator)
local next = true
repeat
coroutine.yield(id)
next, id = nextFunc(iter)
until not next
enum.destructor, enum.handle = nil, nil
endFunc(iter)
end)
end
local function enumerateVehicles()
return enumerateEntities(FindFirstVehicle, FindNextVehicle, EndFindVehicle)
end
local function enumerateObjects()
return enumerateEntities(FindFirstObject, FindNextObject, EndFindObject)
end
local function isMediaPlayer(entity)
local model = GetEntityModel(entity)
if not (permissions.anyEntity or usableEntities[entity]) then
return false
end
return Config.models[model] ~= nil
end
local function getHandle(entity)
return NetworkGetEntityIsNetworked(entity) and NetworkGetNetworkIdFromEntity(entity) or entity
end
local function findHandle(entity)
if NetworkGetEntityIsNetworked(entity) then
local netId = NetworkGetNetworkIdFromEntity(entity)
if mediaPlayers[netId] then
return netId
end
end
local handle = GetHandleFromCoords(GetEntityCoords(entity))
if mediaPlayers[handle] then
return handle
end
return nil
end
local function forEachMediaPlayer(func)
for object in enumerateObjects() do
if isMediaPlayer(object) then
func(object)
end
end
if Config.allowPlayingFromVehicles then
for vehicle in enumerateVehicles() do
func(vehicle)
end
end
end
local function getClosestMediaPlayerEntity(centre, radius, listenerPos, range)
if listenerPos and range and #(centre - listenerPos) > range then
return nil
end
local min
local closest
forEachMediaPlayer(function(entity)
local coords = GetEntityCoords(entity)
local distance = #(centre - coords)
if distance <= radius and (not min or distance < min) then
min = distance
closest = entity
end
end)
return closest
end
local function getClosestMediaPlayer()
return getClosestMediaPlayerEntity(GetEntityCoords(PlayerPedId()), Config.maxDiscoveryDistance)
end
local function getEntityLabel(handle, entity)
local defaultMediaPlayer = GetDefaultMediaPlayer(Config.defaultMediaPlayers, GetEntityCoords(entity))
if defaultMediaPlayer and defaultMediaPlayer.label then
return defaultMediaPlayer.label
else
local entityType = GetEntityType(entity)
local model = GetEntityModel(entity)
if model and Config.models[model] and Config.models[model].label then
return Config.models[model].label
elseif entityType == 2 then
if model then
local displayName = GetDisplayNameFromVehicleModel(model)
local labelText = GetLabelText(displayName)
if labelText == "NULL" then
return displayName
else
return labelText
end
else
return "Veh " .. tostring(handle)
end
elseif entityType == 3 then
return "Obj " .. tostring(handle)
elseif handle then
return tostring(handle)
else
return false
end
end
end
local function getCoordsLabel(handle, coords)
local defaultMediaPlayer = GetDefaultMediaPlayer(Config.defaultMediaPlayers, coords)
if defaultMediaPlayer and defaultMediaPlayer.label then
return defaultMediaPlayer.label
elseif handle then
return tostring(handle)
else
return false
end
end
local function startMediaPlayer(handle, options)
if not options.offset then
options.offset = "0"
end
options.volume = Clamp(options.volume, 0, 100, 100)
options.videoSize = Clamp(options.videoSize, 10, 100, Config.defaultVideoSize)
if options.filter == nil then
options.filter = Config.enableFilterByDefault
end
if options.attenuation then
options.attenuation.sameRoom = Clamp(options.attenuation.sameRoom, 0.0, 10.0, Config.defaultSameRoomAttenuation)
options.attenuation.diffRoom = Clamp(options.attenuation.diffRoom, 0.0, 10.0, Config.defaultDiffRoomAttenuation)
else
options.attenuation = {
sameRoom = Config.defaultSameRoomAttenuation,
diffRoom = Config.defaultDiffRoomAttenuation
}
end
options.diffRoomVolume = Clamp(options.diffRoomVolume, 0.0, 1.0, Config.defaultDiffRoomVolume)
options.range = Clamp(options.range, 0, Config.maxRange, Config.defaultRange)
if NetworkDoesNetworkIdExist(handle) then
local entity = NetworkGetEntityFromNetworkId(handle)
options.model = GetEntityModel(entity)
if Config.models[options.model] then
options.renderTarget = Config.models[options.model].renderTarget
end
if not options.label then
options.label = getEntityLabel(handle, entity)
end
if options.isVehicle == nil then
if Config.models[options.model] then
options.isVehicle = Config.models[options.model].isVehicle
else
options.isVehicle = IsEntityAVehicle(entity)
end
end
elseif doesEntityExist(handle) then
if not options.coords then
options.coords = GetEntityCoords(handle)
end
options.model = GetEntityModel(handle)
if Config.models[options.model] then
options.renderTarget = Config.models[options.model].renderTarget
end
if not options.label then
options.label = getEntityLabel(handle, handle)
end
if options.isVehicle == nil then
if Config.models[options.model] then
options.isVehicle = Config.models[options.model].isVehicle
else
options.isVehicle = IsEntityAVehicle(handle)
end
end
handle = false
elseif options.coords then
if not options.label then
options.label = getCoordsLabel(handle, options.coords)
end
handle = false
end
TriggerServerEvent("pmms:start", handle, options)
end
local function startClosestMediaPlayer(options)
local mediaPlayer = getClosestMediaPlayer()
if not mediaPlayer then
if Config.showNotifications then
notify{text = "No media player nearby"}
end
return
end
startMediaPlayer(getHandle(mediaPlayer), options)
end
local function pauseMediaPlayer(handle)
TriggerServerEvent("pmms:pause", handle)
end
local function pauseClosestMediaPlayer()
local mediaPlayer = getClosestMediaPlayer()
if not mediaPlayer then
if Config.showNotifications then
notify{text = "No media player nearby"}
end
return
end
pauseMediaPlayer(findHandle(mediaPlayer))
end
local function stopMediaPlayer(handle)
TriggerServerEvent("pmms:stop", handle)
end
local function stopClosestMediaPlayer()
local mediaPlayer = getClosestMediaPlayer()
if not mediaPlayer then
if Config.showNotifications then
notify{text = "No media player nearby"}
end
return
end
stopMediaPlayer(findHandle(mediaPlayer))
end
local function getListenerAndViewerInfo()
local cam = GetRenderingCam()
local ped = PlayerPedId()
local listenerCoords, viewerCoords, viewerFov
if cam == -1 then
if IsPedDeadOrDying(ped) then
listenerCoords = GetGameplayCamCoord()
viewerCoords = listenerCoords
else
listenerCoords = GetEntityCoords(ped)
viewerCoords = GetGameplayCamCoord()
end
viewerFov = GetGameplayCamFov()
else
listenerCoords = GetCamCoord(cam)
viewerCoords = listenerCoords
viewerFov = GetCamFov(cam)
end
return ped, listenerCoords, viewerCoords, viewerFov
end
local function sortByDistance(a, b)
if a.distance < 0 then
return false
elseif b.distance < 0 then
return true
else
return a.distance < b.distance
end
end
local function isInSameRoom(entity1, entity2)
local interior1 = GetInteriorFromEntity(entity1)
local interior2 = GetInteriorFromEntity(entity2)
if interior1 ~= interior2 then
return false
end
local roomHash1 = GetRoomKeyFromEntity(entity1)
local roomHash2 = GetRoomKeyFromEntity(entity2)
if roomHash1 ~= roomHash2 then
return false
end
return true
end
local function listPresets()
local presets = {}
for preset, info in pairs(Config.presets) do
table.insert(presets, preset)
end
if #presets == 0 then
notify{text = "No presets available"}
else
table.sort(presets)
for _, preset in ipairs(presets) do
TriggerEvent("chat:addMessage", {
args = {preset, Config.presets[preset].title}
})
end
end
end
local function updateUi()
local playerPed = PlayerPedId()
local pos = GetEntityCoords(playerPed)
local activeMediaPlayers = {}
for handle, info in pairs(mediaPlayers) do
local entity
local entityExists
if info.coords then
entity = localMediaPlayers[handle]
elseif NetworkDoesNetworkIdExist(handle) then
entity = NetworkGetEntityFromNetworkId(handle)
end
local entityExists = doesEntityExist(entity)
local mediaPos
if entityExists then
mediaPos = GetEntityCoords(entity)
elseif info.coords then
mediaPos = info.coords
end
if mediaPos then
local distance = #(pos - mediaPos)
if permissions.manage or distance <= info.range then
local label
if info.label then
label = info.label
elseif entityExists then
label = getEntityLabel(handle, entity)
else
label = getCoordsLabel(handle, mediaPos)
end
local model
if info.model then
model = info.model
elseif entityExists then
model = GetEntityModel(entity)
end
-- Can the user interact with this particular media player?
local canInteract = permissions.manage or
(permissions.interact and
(not entityExists or (permissions.anyEntity or usableEntities[entity] ~= nil)))
table.insert(activeMediaPlayers, {
handle = handle,
info = info,
distance = distance,
label = label,
canInteract = canInteract
})
end
else
if permissions.manage then
table.insert(activeMediaPlayers, {
handle = handle,
info = info,
distance = -1,
canInteract = true
})
end
end
end
table.sort(activeMediaPlayers, sortByDistance)
local usableMediaPlayers = {}
if uiIsOpen then
local uniqueUsableMediaPlayers = {}
forEachMediaPlayer(function(entity)
local mediaPos = GetEntityCoords(entity)
local clHandle = getHandle(entity)
if clHandle then
local svHandle = NetworkGetEntityIsNetworked(entity) and NetworkGetNetworkIdFromEntity(entity) or GetHandleFromCoords(mediaPos)
local distance = #(pos - mediaPos)
local isNearby = distance <= Config.maxDiscoveryDistance
local isActive = mediaPlayers[svHandle] ~= nil
if isNearby or (permissions.manage and isActive) then
uniqueUsableMediaPlayers[clHandle] = {
distance = distance,
label = getEntityLabel(clHandle, entity),
active = isActive
}
end
end
end)
for _, mediaPlayer in ipairs(activeMediaPlayers) do
if mediaPlayer.info.scaleform and mediaPlayer.info.scaleform.standalone and not uniqueUsableMediaPlayers[mediaPlayer.handle] then
uniqueUsableMediaPlayers[mediaPlayer.handle] = {
distance = mediaPlayer.distance,
label = mediaPlayer.label,
active = true
}
end
end
for _, mediaPlayer in ipairs(Config.defaultMediaPlayers) do
if mediaPlayer.scaleform and mediaPlayer.scaleform.standalone then
local svHandle = GetHandleFromCoords(mediaPlayer.position)
if not uniqueUsableMediaPlayers[svHandle] then
local distance = #(pos - mediaPlayer.position)
local isNearby = distance <= Config.maxDiscoveryDistance
local label = getCoordsLabel(svHandle, mediaPlayer.position)
local isActive = mediaPlayers[svHandle] ~= nil
if isNearby or (permissions.manage and isActive) then
uniqueUsableMediaPlayers[svHandle] = {
distance = distance,
label = label,
active = isActive,
standaloneScaleform = true,
coords = mediaPlayer.position
}
end
end
end
end
for handle, info in pairs(uniqueUsableMediaPlayers) do
table.insert(usableMediaPlayers, {
handle = handle,
distance = info.distance,
label = info.label,
active = info.active,
standaloneScaleform = info.standaloneScaleform,
coords = info.coords
})
end
table.sort(usableMediaPlayers, sortByDistance)
end
SendNUIMessage({
type = "updateUi",
uiIsOpen = uiIsOpen,
activeMediaPlayers = json.encode(activeMediaPlayers),
usableMediaPlayers = json.encode(usableMediaPlayers),
presets = json.encode(Config.presets),
maxDiscoveryDistance = Config.maxDiscoveryDistance,
permissions = permissions,
baseVolume = baseVolume
})
end
local function createMediaPlayerEntity(options, networked)
local model = options.model or Config.defaultModel
if type(model) == "string" then
model = GetHashKey(model)
end
if not IsModelInCdimage(model) then
print("Invalid model: " .. tostring(model))
return
end
RequestModel(model)
while not HasModelLoaded(model) do
Citizen.Wait(0)
end
local entity = CreateObjectNoOffset(model, options.position, networked, networked, false, false)
SetModelAsNoLongerNeeded(model)
if options.rotation then
SetEntityRotation(entity, options.rotation, 2)
end
if options.invisible then
SetEntityVisible(entity, false)
SetEntityCollision(entity, false, false)
end
return entity
end
local function createDefaultMediaPlayer(mediaPlayer)
mediaPlayer.handle = createMediaPlayerEntity(mediaPlayer, false)
end
local function setMediaPlayerStartTime(handle, time)
TriggerServerEvent("pmms:setStartTime", handle, time)
end
local function lockMediaPlayer(handle)
TriggerServerEvent("pmms:lock", handle)
end
local function unlockMediaPlayer(handle)
TriggerServerEvent("pmms:unlock", handle)
end
local function setBaseVolume(volume)
baseVolume = Clamp(volume, 0, 100, 100)
SetResourceKvp("baseVolume", tostring(baseVolume))
end
local function toggleStatus()
SendNUIMessage({
type = "toggleStatus"
})
statusIsShown = not statusIsShown
SetResourceKvpInt("showStatus", statusIsShown and 1 or 0)
end
local function loadSettings()
local volume = GetResourceKvpString("baseVolume")
if volume then
baseVolume = tonumber(volume)
end
local showStatus = GetResourceKvpInt("showStatus")
if showStatus == 1 then
toggleStatus()
end
tooltipsEnabled = GetResourceKvpString("tooltipsEnabled") ~= "no"
end
local function enableVideo(handle)
TriggerServerEvent("pmms:enableVideo", handle)
end
local function disableVideo(handle)
TriggerServerEvent("pmms:disableVideo", handle)
end
local function isPauseMenuOrMapActive()
if Config.isRDR then
return IsPauseMenuActive() or IsAppActive(`MAP`) ~= 0
else
return IsPauseMenuActive()
end
end
local function copyMediaPlayer(oldHandle, newHandle)
if NetworkDoesNetworkIdExist(newHandle) then
TriggerServerEvent("pmms:copy", oldHandle, newHandle)
else
local coords = GetEntityCoords(newHandle)
TriggerServerEvent("pmms:copy", oldHandle, false, coords)
end
end
local function getLocalMediaPlayer(coords, listenerPos, range)
local handle = GetHandleFromCoords(coords)
if not doesEntityExist(localMediaPlayers[handle]) then
localMediaPlayers[handle] = getClosestMediaPlayerEntity(coords, 1.0, listenerPos, range)
end
return localMediaPlayers[handle]
end
local function getEntityModelAndRenderTarget(handle)
local entity
if type(handle) == "vector3" then
entity = getLocalMediaPlayer(handle, GetEntityCoords(PlayerPedId()), Config.maxRange)
elseif NetworkDoesNetworkIdExist(handle) then
entity = NetworkGetEntityFromNetworkId(handle)
else
return
end
local model = GetEntityModel(entity)
if not model then
return
end
if Config.models[model] then
return entity, model, Config.models[model].renderTarget
else
return entity, model
end
end
local function sendMediaMessage(handle, coords, data)
if Config.isRDR then
SendNUIMessage(data)
else
local duiBrowser = DuiBrowser:getBrowserForHandle(handle)
if not duiBrowser then
local scaleform
if mediaPlayers[handle] and mediaPlayers[handle].scaleform then
scaleform = mediaPlayers[handle].scaleform
else
scaleform = data.options and data.options.scaleform
end
local entity, model, renderTarget = getEntityModelAndRenderTarget(coords or handle)
local mediaPos
if entity then
mediaPos = GetEntityCoords(entity)
elseif mediaPlayers[handle] then
mediaPos = mediaPlayers[handle].coords
model = mediaPlayers[handle].model
renderTarget = mediaPlayers[handle].renderTarget
elseif data.options and data.options.coords then
mediaPos = data.options.coords
end
if mediaPos and (model or scaleform) then
local ped, listenPos, viewerPos, viewerFov = getListenerAndViewerInfo()
if #(viewerPos - mediaPos) < (data.range or Config.maxRange) then
duiBrowser = DuiBrowser:new(handle, model, renderTarget, scaleform, data.options.url)
end
end
end
if duiBrowser then
if data.options and data.options.scaleform then
duiBrowser:setScaleform(data.options.scaleform)
end
duiBrowser:sendMessage(data)
end
end
end
local function getSvHandle(handle)
if NetworkDoesNetworkIdExist(handle) then
return handle
elseif doesEntityExist(handle) then
return GetHandleFromCoords(GetEntityCoords(handle))
else
return handle
end
end
local function enableEntity(entity)
usableEntities[entity] = true
end
local function disableEntity(entity)
usableEntities[entity] = nil
stopMediaPlayer(findHandle(entity))
end
local function createMediaPlayer(options)
local entity = createMediaPlayerEntity(options, true)
personalMediaPlayers[entity] = true
enableEntity(entity)
return entity
end
local function deleteMediaPlayer(entity)
personalMediaPlayers[entity] = nil
disableEntity(entity)
DeleteEntity(entity)
end
local function disableStaticEmitters()
for _, emitter in ipairs(StaticEmitters) do
SetStaticEmitterEnabled(emitter.name, false)
end
end
local function restoreStaticEmitters()
for _, emitter in ipairs(StaticEmitters) do
SetStaticEmitterEnabled(emitter.name, emitter.enabled)
end
end
local function invalidateIdleCams()
if Config.isRDR then
Citizen.InvokeNative(0x634F4A0562CF19B8)
else
InvalidateIdleCam()
InvalidateVehicleIdleCam()
end
end
exports("enableEntity", enableEntity)
exports("disableEntity", disableEntity)
exports("createMediaPlayer", createMediaPlayer)
exports("deleteMediaPlayer", deleteMediaPlayer)
RegisterNUICallback("startup", function(data, cb)
loadSettings()
TriggerServerEvent("pmms:loadPermissions")
TriggerServerEvent("pmms:loadSettings")
cb {
isRDR = Config.isRDR,
enableFilterByDefault = Config.enableFilterByDefault,
defaultSameRoomAttenuation = Config.defaultSameRoomAttenuation,
defaultDiffRoomAttenuation = Config.defaultDiffRoomAttenuation,
defaultDiffRoomVolume = Config.defaultDiffRoomVolume,
defaultRange = Config.defaultRange,
maxRange = Config.maxRange,
defaultScaleformName = Config.defaultScaleformName,
defaultVideoSize = Config.defaultVideoSize,
audioVisualizations = Config.audioVisualizations,
tooltipsEnabled = tooltipsEnabled,
currentServerEndpoint = GetCurrentServerEndpoint()
}
end)
RegisterNUICallback("duiStartup", function(data, cb)
cb {
isRDR = Config.isRDR,
audioVisualizations = Config.audioVisualizations,
currentServerEndpoint = GetCurrentServerEndpoint()
}
end)
RegisterNUICallback("init", function(data, cb)
if NetworkDoesNetworkIdExist(data.handle) or data.options.coords then
if data.options.coords then
data.options.coords = ToVector3(data.options.coords)
end
if data.options.scaleform then
data.options.scaleform.position = ToVector3(data.options.scaleform.position)
data.options.scaleform.rotation = ToVector3(data.options.scaleform.rotation)
data.options.scaleform.scale = ToVector3(data.options.scaleform.scale)
end
TriggerServerEvent("pmms:init", data.handle, data.options)
end
cb({})
end)
RegisterNUICallback("initError", function(data, cb)
TriggerEvent("pmms:error", "Error loading " .. data.url .. ": " .. data.message)
cb({})
end)
RegisterNUICallback("playError", function(data, cb)
TriggerEvent("pmms:error", "Error playing " .. data.url .. ": " .. data.message)
cb({})
end)
RegisterNUICallback("play", function(data, cb)
if data.options.scaleform then
data.options.scaleform.position = ToVector3(data.options.scaleform.position)
data.options.scaleform.rotation = ToVector3(data.options.scaleform.rotation)
data.options.scaleform.scale = ToVector3(data.options.scaleform.scale)
if not data.handle or data.handle == -1 then
data.handle = false
data.options.coords = data.options.scaleform.position
data.options.scaleform.standalone = true
end
end
startMediaPlayer(data.handle, data.options)
cb({})
end)
RegisterNUICallback("pause", function(data, cb)
TriggerServerEvent("pmms:pause", data.handle)
cb({})
end)
RegisterNUICallback("stop", function(data, cb)
stopMediaPlayer(data.handle)
cb({})
end)
RegisterNUICallback("closeUi", function(data, cb)
SetNuiFocus(false, false)
uiIsOpen = false
cb({})
end)
RegisterNUICallback("seekBackward", function(data, cb)
setMediaPlayerStartTime(data.handle, mediaPlayers[data.handle].startTime + 10)
cb({})
end)
RegisterNUICallback("seekForward", function(data, cb)
setMediaPlayerStartTime(data.handle, mediaPlayers[data.handle].startTime - 10)
cb({})
end)
RegisterNUICallback("seekToTime", function(data, cb)
local p = mediaPlayers[data.handle]
setMediaPlayerStartTime(data.handle, p.startTime + (p.offset - data.offset))
cb({})
end)
RegisterNUICallback("lock", function(data, cb)
lockMediaPlayer(data.handle)
cb({})
end)
RegisterNUICallback("unlock", function(data, cb)
unlockMediaPlayer(data.handle)
cb({})
end)
RegisterNUICallback("setBaseVolume", function(data, cb)
setBaseVolume(data.volume)
cb({})
end)
RegisterNUICallback("enableVideo", function(data, cb)
enableVideo(data.handle)
cb({})
end)
RegisterNUICallback("disableVideo", function(data, cb)
disableVideo(data.handle)
cb({})
end)
RegisterNUICallback("decreaseVideoSize", function(data, cb)
TriggerServerEvent("pmms:setVideoSize", data.handle, mediaPlayers[data.handle].videoSize - 10)
cb({})
end)
RegisterNUICallback("increaseVideoSize", function(data, cb)
TriggerServerEvent("pmms:setVideoSize", data.handle, mediaPlayers[data.handle].videoSize + 10)
cb({})
end)
RegisterNUICallback("mute", function(data, cb)
TriggerServerEvent("pmms:mute", data.handle)
cb({})
end)
RegisterNUICallback("unmute", function(data, cb)
TriggerServerEvent("pmms:unmute", data.handle)
cb({})
end)
RegisterNUICallback("copy", function(data, cb)
copyMediaPlayer(data.oldHandle, data.newHandle)
cb({})
end)
RegisterNUICallback("setLoop", function(data, cb)
TriggerServerEvent("pmms:setLoop", data.handle, data.loop)
cb({})
end)