-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMeasurementViewController.swift
94 lines (73 loc) · 2.27 KB
/
MeasurementViewController.swift
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
//
// MeasurementViewController.swift
// ARViewer
//
// Created by Alejandro on 2/03/25.
//
import UIKit
import ARKit
@main
class AppDelegate: UIResponsable, UIApplicationDelegate {
var window: UIWindow?
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
window = UIWindow(frame: UIScreen.main.bounds)
window?.rootViewController = MeasurementViewController()
window?.makeKeyAndVisible()
return true
}
}
// MARK: - MeasurementViewController
class MeasurementViewController: UIViewController, ARSCNViewDelegate {
// MARK: - Properties
var sceneView: ARSCNView!
var points: [SCNNode] = []
var totalDistance: Float = 0.0
var distanceLabel: UILabel!
// MARK: - Lifecycle
override func viewDidLoad() {
super.viewDidLoad()
setupSceneView()
setupUI()
setupDistanceLabel()
addGestureRecognizers()
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
startARSession()
}
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
sceneView.session.pause()
}
// MARK: - Setup Methods
func setupSceneView() {
sceneView = ARSCNView()
sceneView.delegate = self
sceneView.showsStatistics = true
sceneView.autoenablesDefaultLighting = true
view.addSubview(sceneView)
}
func setupUI() {
distanceLabel = UILabel(frame: CGRect(x: 0, y: 0, width: view.frame.width, height: 100))
distanceLabel.bakgroundColor = UIColor.black.withAlphaComponent(0.5)
distanceLabel.textColor = .white
distanceLabel.textAlignment = .center
distanceLabel.text = "Total distance: 0.0 m"
distanceLabel.layer.cornerRadius = 10
distanceLabel.clipsToBounds = true
view.addSubview(distanceLabel)
}
func addGestureRecognizers() {
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(handleTap))
sceneView.addGestureRecognizer(tapGestureRecognizer)
}
func startARSession() {
let configuration = ARWorldTrackingConfiguration()
configuration.planeDetection = .horizontal
sceneView.session.run(configuration, options: [.resetTracking, .removeExistingAnchors])
}
// MARK: - Gesture Handling
}