-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathUiCreate.cs
More file actions
295 lines (258 loc) · 12 KB
/
Copy pathUiCreate.cs
File metadata and controls
295 lines (258 loc) · 12 KB
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
using EFT.InventoryLogic;
using EFT.UI;
using EFT.UI.DragAndDrop;
using HarmonyLib;
using System;
using System.Collections.Generic;
using System.IO;
using TarkovVR;
using TarkovVR.Patches.UI;
using TarkovVR.Source.Controls;
using TarkovVR.Source.Settings;
using UnityEngine;
using UnityEngine.UI;
using Valve.VR;
using static TarkovVR.Source.Controls.InputHandlers;
public class CircularSegmentUI : MonoBehaviour
{
public int numberOfSegments = 5; // Number of segments in the circle
public float radius = 100f; // Radius of the circle
public float segmentSpacing = 2f; // Spacing between segments in degrees
public string spritePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "BepInEx\\plugins\\sptvr\\Assets"); // Path to the image in the Resources folder
//public string[] menuSprites = { "reload.png", "checkAmmo.png", "inspect.png", "fixMalfunction.png", "fireMode_burst.png" };
public Sprite[] menuSprites;
public Image[] menuSegments;
public Sprite defaultMenuSprite = null;
public Sprite selectedMenuSprite = null;
public bool leftHand = false;
private QuickSlotHandler quickSlotHandler;
private SelectWeaponHandler selectWeaponHandler;
private List<EBoundItem> quickSlotOrder;
private List<GClass929> iconsList;
public void Init()
{
string fullPath = Path.Combine(spritePath, "radialMenu.png");
byte[] fileData = File.ReadAllBytes(fullPath);
Texture2D texture = new Texture2D(2, 2);
texture.LoadImage(fileData);
defaultMenuSprite = Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), new Vector2(0.5f, 0.5f));
fullPath = Path.Combine(spritePath, "radialMenu_Selected.png");
fileData = File.ReadAllBytes(fullPath);
texture = new Texture2D(2, 2);
texture.LoadImage(fileData);
selectedMenuSprite = Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), new Vector2(0.5f, 0.5f));
gameObject.AddComponent<Canvas>().renderMode = RenderMode.WorldSpace;
transform.localScale = new Vector3(0.001f,0.001f, 0.001f);
}
private int lastSelectedSegment = -1;
//private void OnEnable() {
// if (leftHand)
// CreateQuickSlotUi();
//}
public void CreateGunUi(string[] menuSpriteNames) {
menuSegments = new Image[menuSpriteNames.Length];
this.menuSprites = new Sprite[menuSpriteNames.Length];
numberOfSegments = menuSpriteNames.Length;
for (int i = 0; i < numberOfSegments; i++) {
byte[] fileData = File.ReadAllBytes(Path.Combine(spritePath, menuSpriteNames[i]));
Texture2D texture = new Texture2D(2, 2);
texture.LoadImage(fileData);
menuSprites[i] = Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), new Vector2(0.5f, 0.5f));
}
CreateSegments();
IInputHandler baseHandler;
VRInputManager.inputHandlers.TryGetValue(EFT.InputSystem.ECommand.SelectFirstPrimaryWeapon, out baseHandler);
if (baseHandler != null)
selectWeaponHandler = baseHandler as SelectWeaponHandler;
gameObject.active = false;
if (VRSettings.GetLeftHandedMode())
{
transform.localPosition = new Vector3(0.0172f, -0.1143f, -0.03f);
transform.localEulerAngles = new Vector3(270, 127, 80);
}
else
{
transform.localPosition = new Vector3(-0.0728f, -0.1343f, 0);
transform.localEulerAngles = new Vector3(290, 252, 80);
}
}
public void CreateQuickSlotUi()
{
leftHand = true;
int children = transform.childCount;
for (int i = 0; i < children; i++)
{
Destroy(transform.GetChild(i).gameObject);
}
Dictionary<EBoundItem, Item> quickSlots = VRGlobals.player.Inventory.FastAccess.BoundItems;
menuSegments = new Image[quickSlots.Count];
numberOfSegments = quickSlots.Count;
List<Sprite> newMenuSprites = new List<Sprite>();
quickSlotOrder = new List<EBoundItem>();
iconsList = new List<GClass929>();
foreach (KeyValuePair<EBoundItem, Item> kvp in quickSlots)
{
GClass929 itemIcon = ItemViewFactory.LoadItemIcon(kvp.Value);
if (itemIcon.Sprite != null)
{
iconsList.Add(itemIcon);
newMenuSprites.Add(itemIcon.Sprite);
quickSlotOrder.Add(kvp.Key);
}
}
this.menuSprites = newMenuSprites.ToArray();
if (this.menuSprites.Length > 0)
CreateSegments();
IInputHandler baseHandler;
VRInputManager.inputHandlers.TryGetValue(EFT.InputSystem.ECommand.SelectFastSlot4, out baseHandler);
if (baseHandler != null)
quickSlotHandler = baseHandler as QuickSlotHandler;
if (VRSettings.GetLeftHandedMode())
{
transform.localPosition = new Vector3(0.0472f, -0.1043f, 0.01f);
transform.localEulerAngles = new Vector3(272, 116, 27);
}
else {
transform.localPosition = new Vector3(-0.0728f, -0.1343f, 0);
transform.localEulerAngles = new Vector3(290, 252, 80);
}
}
private void OnEnable() {
if (leftHand)
{
if (VRSettings.GetLeftHandedMode())
VRGlobals.blockRightJoystick = true;
else
VRGlobals.blockLeftJoystick = true;
}
else {
if (VRSettings.GetLeftHandedMode())
VRGlobals.blockLeftJoystick = true;
else
VRGlobals.blockRightJoystick = true;
}
}
private void OnDisable()
{
if (leftHand)
{
if (VRSettings.GetLeftHandedMode())
VRGlobals.blockRightJoystick = false;
else
VRGlobals.blockLeftJoystick = false;
}
else
{
if (VRSettings.GetLeftHandedMode())
VRGlobals.blockLeftJoystick = false;
else
VRGlobals.blockRightJoystick = false;
}
}
void Update()
{
if (numberOfSegments == 0)
return;
bool leftHandedMode = VRSettings.GetLeftHandedMode();
bool secondaryGripState = leftHandedMode ? SteamVR_Actions._default.RightGrip.GetState(SteamVR_Input_Sources.RightHand) : SteamVR_Actions._default.LeftGrip.GetState(SteamVR_Input_Sources.LeftHand);
bool primaryGripState = leftHandedMode ? SteamVR_Actions._default.LeftGrip.GetState(SteamVR_Input_Sources.LeftHand) : SteamVR_Actions._default.RightGrip.GetState(SteamVR_Input_Sources.RightHand);
Vector2 joystickInput = leftHandedMode ? SteamVR_Actions._default.LeftJoystick.GetAxis(SteamVR_Input_Sources.LeftHand) : SteamVR_Actions._default.RightJoystick.GetAxis(SteamVR_Input_Sources.RightHand);
if (leftHand)
joystickInput = leftHandedMode ? SteamVR_Actions._default.RightJoystick.GetAxis(SteamVR_Input_Sources.RightHand) : SteamVR_Actions._default.LeftJoystick.GetAxis(SteamVR_Input_Sources.LeftHand);
if (lastSelectedSegment != -1)
{
menuSegments[lastSelectedSegment].color = new Color(1f, 1f, 1f, 0.3f);
menuSegments[lastSelectedSegment].sprite = defaultMenuSprite;
lastSelectedSegment = -1;
}
if (joystickInput.x != 0 || joystickInput.y != 0)
{
float angle = Mathf.Atan2(joystickInput.x, joystickInput.y) * Mathf.Rad2Deg;
angle += 15;
if (angle < 0) angle += 360;
// Determine the selected segment
int selectedSegment = Mathf.FloorToInt(angle / (360f / numberOfSegments));
menuSegments[selectedSegment].color = new Color(1f, 1f, 1f, 0.5f); // Change to blue with desired opacity
menuSegments[selectedSegment].sprite = selectedMenuSprite;
lastSelectedSegment = selectedSegment;
}
if (!leftHand && !primaryGripState)
{
if (lastSelectedSegment == 0)
selectWeaponHandler.TriggerSwapPrimaryWeapon();
else if (lastSelectedSegment == 1)
selectWeaponHandler.TriggerSwapSecondaryWeapon();
else if (lastSelectedSegment == 2)
selectWeaponHandler.TriggerSwapSidearm();
else if (lastSelectedSegment == 3)
selectWeaponHandler.TriggerSwapToMelee();
gameObject.active = false;
// Add additional actions as necessary
}
if (leftHand && !secondaryGripState)
{
if (quickSlotHandler.GetQuickUseSlot() == 0 && lastSelectedSegment != -1) {
quickSlotHandler.TriggerUseQuickSlot(quickSlotOrder[lastSelectedSegment]);
menuSegments[lastSelectedSegment].color = new Color(1f, 1f, 1f, 0.3f);
menuSegments[lastSelectedSegment].sprite = defaultMenuSprite;
lastSelectedSegment = -1;
}
gameObject.active = false;
}
}
// parent is HumanLForearm3
// Timer panel localpos: 0.047 0.08 0.025
// local rot = 88.5784 83.1275 174.7802
// child(0).localeuler = 0 342.1273 0
// leftwristui localpos = -0.1 0.04 0.035
// localrot = 304.3265 181 180
void CreateSegments()
{
if (menuSegments == null || menuSegments.Length < numberOfSegments)
menuSegments = new Image[numberOfSegments];
if (menuSprites == null || menuSprites.Length < numberOfSegments)
{
Debug.LogError($"menuSprites is null or too short! Expected at least {numberOfSegments}, got {(menuSprites == null ? "null" : menuSprites.Length.ToString())}");
return; // Bail early to avoid crash
}
float angleStep = 360f / numberOfSegments;
float adjustedAngleStep = angleStep - segmentSpacing;
float fillAmount = adjustedAngleStep / 360f;
for (int i = 0; i < numberOfSegments; i++)
{
GameObject newSegment = new GameObject("radialSegment_" + i);
newSegment.transform.parent = transform;
newSegment.transform.localScale = Vector3.one;
Image segmentImage = newSegment.AddComponent<Image>();
menuSegments[i] = segmentImage;
segmentImage.sprite = defaultMenuSprite;
segmentImage.type = Image.Type.Filled;
segmentImage.fillMethod = Image.FillMethod.Radial360;
segmentImage.fillOrigin = (int)Image.Origin360.Bottom;
segmentImage.fillAmount = fillAmount;
RectTransform rectTransform = newSegment.GetComponent<RectTransform>();
rectTransform.sizeDelta = new Vector2(radius * 2, radius * 2);
rectTransform.localPosition = Vector3.zero;
segmentImage.color = new Color(1f, 1f, 1f, 0.3f);
float angle = (i * angleStep) + (angleStep / 2);
rectTransform.localRotation = Quaternion.Euler(0, 0, -angle);
GameObject menuOption = new GameObject("menuOption_" + i);
menuOption.transform.parent = newSegment.transform;
menuOption.transform.localPosition = Vector3.zero;
Vector3 newRot = rectTransform.localEulerAngles * -1;
newRot.z += 90;
if (leftHand)
newRot.z += 90;
menuOption.transform.localEulerAngles = newRot;
menuOption.transform.localScale = leftHand ? new Vector3(1.25f, 1.25f, 1.25f) : Vector3.one;
Image optionIcon = menuOption.AddComponent<Image>();
optionIcon.sprite = i < menuSprites.Length ? menuSprites[i] : null;
optionIcon.color = new Color(1f, 1f, 1f, 1f);
RectTransform iconRectTransform = menuOption.GetComponent<RectTransform>();
iconRectTransform.sizeDelta = new Vector2(radius * 0.5f, radius * 0.5f);
float x = -0.45f + ((numberOfSegments - 4) * 0.06f);
float y = -0.5f - ((numberOfSegments - 4) * 0.06f);
iconRectTransform.localPosition = new Vector3(radius * x, radius * y, 0);
}
}
}