1
0
forked from MeloNX/MeloNX

更新 src/MeloNX/MeloNX/App/Views/Main/ControllerView/ControllerView.swift

This commit is contained in:
PhoenixR 2025-03-18 09:21:48 +00:00
parent fd4bc5ccbb
commit ff4b59730a

View File

@ -30,7 +30,7 @@ struct ControllerView: View {
VStack {
ShoulderButtonsViewRight()
ZStack {
Joystick(iscool: true) // hope this works
Joystick(iscool: true) // hope this works JoyStick
ABXYView()
}
}
@ -47,7 +47,7 @@ struct ControllerView: View {
} else {
// could be landscape
VStack {
/*VStack {
Spacer()
VStack {
@ -57,8 +57,9 @@ struct ControllerView: View {
VStack {
ShoulderButtonsViewLeft()
ZStack {
Joystick()
DPadView()
//Joystick()
Joystick4FTG()
//DPadView() Disable landscape Dpad
}
}
HStack {
@ -77,7 +78,7 @@ struct ControllerView: View {
VStack {
ShoulderButtonsViewRight()
ZStack {
Joystick(iscool: true) // hope this work s
//Joystick(iscool: true) // hope this work Disable right Joystick
ABXYView()
}
}
@ -85,6 +86,35 @@ struct ControllerView: View {
}
// .padding(.bottom, geometry.size.height / 11) // also extremally broken (
}*/
VStack {
Spacer() //
HStack(alignment: .bottom) {
VStack(alignment: .leading) {
//ShoulderButtonsViewLeft()
Joystick4FTG() //
//.frame(maxWidth: .infinity, alignment: .leading)
}
.offset(x: 10, y: -5) // +
HStack {
VStack {
ButtonView(button: .back) // -
}
Spacer()
VStack {
ButtonView(button: .start) // +
}
}
VStack {
ShoulderButtonsViewRight()
ZStack {
ABXYView()
}
}.offset(x: 30, y: 25) // 50 25
}
.padding(.bottom, 10) // padding
}
}
}
@ -99,10 +129,11 @@ struct ShoulderButtonsViewLeft: View {
var body: some View {
HStack {
ButtonView(button: .leftTrigger)
.padding(.horizontal)
ButtonView(button: .leftShoulder)
.padding(.horizontal)
//move left Trigger
// ButtonView(button: .leftTrigger)
// .padding(.horizontal)
//ButtonView(button: .leftShoulder)
// .padding(.horizontal)
}
.frame(width: width, height: height)
.onAppear() {
@ -118,8 +149,8 @@ struct ShoulderButtonsViewLeft: View {
}
struct ShoulderButtonsViewRight: View {
@State var width: CGFloat = 160
@State var height: CGFloat = 20
@State var width: CGFloat = 100
@State var height: CGFloat = 60
@AppStorage("On-ScreenControllerScale") var controllerScale: Double = 1.0
var body: some View {
@ -128,6 +159,15 @@ struct ShoulderButtonsViewRight: View {
.padding(.horizontal)
ButtonView(button: .rightTrigger)
.padding(.horizontal)
}
HStack{
//put left Trigger there
ButtonView(button: .leftTrigger)
.padding(.horizontal)
ButtonView(button: .leftShoulder)
.padding(.horizontal)
}
.frame(width: width, height: height)
.onAppear() {
@ -171,7 +211,7 @@ struct ABXYView: View {
@State var size: CGFloat = 145
@AppStorage("On-ScreenControllerScale") var controllerScale: Double = 1.0
var body: some View {
/*var body: some View {
VStack {
ButtonView(button: .X)
HStack {
@ -182,6 +222,21 @@ struct ABXYView: View {
ButtonView(button: .B)
.padding(.horizontal)
}
*/
//
var body: some View {
VStack(spacing: 5){
HStack(spacing: 5) {
ButtonView(button: .Y)
ButtonView(button: .B)
}
HStack(spacing: 5) {
ButtonView(button: .X)
ButtonView(button: .A)
}
}
.frame(width: size, height: size)
.onAppear() {
if UIDevice.current.systemName.contains("iPadOS") {
@ -195,8 +250,8 @@ struct ABXYView: View {
struct ButtonView: View {
var button: VirtualControllerButton
@State var width: CGFloat = 45
@State var height: CGFloat = 45
@State var width: CGFloat = 90
@State var height: CGFloat = 90
@State var isPressed = false
@AppStorage("onscreenhandheld") var onscreenjoy: Bool = false
@Environment(\.colorScheme) var colorScheme
@ -210,14 +265,14 @@ struct ButtonView: View {
.resizable()
.frame(width: width, height: height)
.foregroundColor(colorScheme == .dark ? Color.gray : Color.gray)
.opacity(isPressed ? 0.4 : 0.7)
.opacity(isPressed ? 0.3 : 0.6)
.gesture(
DragGesture(minimumDistance: 0)
.onChanged { _ in
if !self.isPressed {
self.isPressed = true
Ryujinx.shared.virtualController.setButtonState(1, for: button)
Haptics.shared.play(.heavy)
Haptics.shared.play(.light)
}
}
.onEnded { _ in