Skip to content

Commit 8c156c7

Browse files
committed
MinimapOverlays now support zones!
1 parent f45dabe commit 8c156c7

File tree

4 files changed

+60
-5
lines changed

4 files changed

+60
-5
lines changed

MenuExample/MenuExample.cs

+10
Original file line numberDiff line numberDiff line change
@@ -1920,6 +1920,16 @@ public MenuExample()
19201920

19211921
var overlay2 = await MinimapOverlays.AddSizedOverlayToMap("scaleformui", "wallp", 2000, 1000, centered: true);
19221922

1923+
List<Vector3> list = new List<Vector3>()
1924+
{
1925+
new Vector3(-100.78f, -1129.4f, 25.8f),
1926+
new Vector3(36.1f, -1120.28f, 19.2f),
1927+
new Vector3(91.26f, -1004.77f, 29.35f),
1928+
new Vector3(-24.42f, -963.52f, 29.35f),
1929+
};
1930+
1931+
var areaoverlay = await MinimapOverlays.AddAreaOverlay(list, false, SColor.FromArgb(180, SColor.HUD_Red));
1932+
19231933
overlay1.OnMouseEvent += (ev) =>
19241934
{
19251935
Debug.WriteLine("MouseEvent: " + ev);

ScaleformUI_Csharp/Elements/SColor.cs

+1
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ public static SColor FromRandomValues()
423423
public static SColor FromArgb(int alpha, int red, int green, int blue) => new(Color.FromArgb(alpha, red, green, blue));
424424

425425
public static SColor FromArgb(int alpha, Color baseColor) => new(Color.FromArgb(alpha, baseColor));
426+
public static SColor FromArgb(int alpha, SColor baseColor) => new(Color.FromArgb(alpha, baseColor.R, baseColor.G, baseColor.B));
426427

427428
public static SColor FromArgb(int red, int green, int blue) => FromArgb(byte.MaxValue, red, green, blue);
428429

ScaleformUI_Csharp/Scaleforms/Minimap/MinimapOverlays.cs

+20
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,26 @@ public static async Task<MinimapOverlay> AddScaledOverlayToMap(string textureDic
238238
return await addOverlay("ADD_SCALED_OVERLAY", textureDict, textureName, x, y, rotation, xScale, yScale, alpha, centered);
239239
}
240240

241+
public static async Task<MinimapOverlay> AddAreaOverlay(List<Vector3> coords, bool outline, SColor color)
242+
{
243+
List<Vector2> res = coords.ConvertAll(x => (Vector2)x);
244+
IEnumerable<string> joined = res.Select(vec => $"{vec.X}:{vec.Y}");
245+
string tobesent = string.Join(",", joined);
246+
247+
CallMinimapScaleformFunction(overlay, "ADD_AREA_OVERLAY");
248+
ScaleformMovieMethodAddParamPlayerNameString(tobesent);
249+
ScaleformMovieMethodAddParamBool(outline);
250+
ScaleformMovieMethodAddParamInt(color.R);
251+
ScaleformMovieMethodAddParamInt(color.G);
252+
ScaleformMovieMethodAddParamInt(color.B);
253+
ScaleformMovieMethodAddParamInt(color.A);
254+
EndScaleformMovieMethod();
255+
256+
MinimapOverlay minOv = new MinimapOverlay(minimaps.Count + 1, "", "", new Vector2(0), 0, new SizeF(0,0), 255, false);
257+
minimaps.Add(minOv);
258+
return minOv;
259+
}
260+
241261
/// <summary>
242262
/// Sets the selected overlay's color (argb)
243263
/// </summary>

ScaleformUI_Lua/src/scaleforms/Minimap/MinimapOverlays.lua

+29-5
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ function MinimapOverlays:Load()
1717
TriggerEvent("ScUI:getMinimapHandle", function(handle)
1818
self.minimapHandle = handle
1919
end)
20-
i = i+1
21-
if i==2 then
20+
i = i + 1
21+
if i == 2 then
2222
break
2323
end
2424
Wait(1000)
@@ -39,7 +39,7 @@ Citizen.CreateThread(function()
3939
while true do
4040
Wait(0)
4141
if MinimapOverlays.minimapHandle ~= 0 then
42-
local success, event_type, context, item_id = GetScaleformMovieCursorSelection( MinimapOverlays.minimapHandle)
42+
local success, event_type, context, item_id = GetScaleformMovieCursorSelection(MinimapOverlays.minimapHandle)
4343
if success then
4444
if context == 1000 then
4545
MinimapOverlays.minimaps[item_id + 1].OnMouseEvent(event_type)
@@ -87,7 +87,8 @@ function MinimapOverlays:AddSizedOverlayToMap(textureDict, textureName, x, y, ro
8787

8888
SetStreamedTextureDictAsNoLongerNeeded(textureDict)
8989

90-
local overlay = MinimapOverlay.New(#self.minimaps + 1, textureDict, textureName, x, y, rotation, width, height, alpha, centered)
90+
local overlay = MinimapOverlay.New(#self.minimaps + 1, textureDict, textureName, x, y, rotation, width, height, alpha,
91+
centered)
9192
table.insert(self.minimaps, overlay)
9293
return overlay
9394
end
@@ -132,7 +133,30 @@ function MinimapOverlays:AddScaledOverlayToMap(textureDict, textureName, x, y, r
132133

133134
SetStreamedTextureDictAsNoLongerNeeded(textureDict)
134135

135-
local overlay = MinimapOverlay.New(#self.minimaps + 1, textureDict, textureName, x, y, rotation, xScale, yScale, alpha, centered)
136+
local overlay = MinimapOverlay.New(#self.minimaps + 1, textureDict, textureName, x, y, rotation, xScale, yScale,
137+
alpha, centered)
138+
table.insert(self.minimaps, overlay)
139+
return overlay
140+
end
141+
142+
function MinimapOverlays:AddAreaOverlay(coords, outline, color)
143+
local points = {}
144+
for _, coord in ipairs(coords) do
145+
table.insert(points, string.format("%.2f:%.2f", coord.x, coord.y))
146+
end
147+
148+
local tobeparsed = table.concat(points, ",")
149+
150+
CallMinimapScaleformFunction(self.overlay, "ADD_AREA_OVERLAY")
151+
ScaleformMovieMethodAddParamPlayerNameString(tobeparsed)
152+
ScaleformMovieMethodAddParamBool(outline)
153+
ScaleformMovieMethodAddParamInt(color.R)
154+
ScaleformMovieMethodAddParamInt(color.G)
155+
ScaleformMovieMethodAddParamInt(color.B)
156+
ScaleformMovieMethodAddParamInt(color.A)
157+
EndScaleformMovieMethod()
158+
159+
local overlay = MinimapOverlay.New(#self.minimaps + 1, "", "", 0, 0, 0, 0, 0, color.A, true)
136160
table.insert(self.minimaps, overlay)
137161
return overlay
138162
end

0 commit comments

Comments
 (0)