2023-12-19 00:15:48 +02:00
|
|
|
extends RoomState
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
const wall_corner_scene = preload ("../wall_corner.tscn")
|
|
|
|
const wall_edge_scene = preload ("../wall_edge.tscn")
|
|
|
|
const RoomState = preload ("./room_state.gd")
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
var moving = null
|
2023-12-21 19:35:43 +02:00
|
|
|
var deleting: bool = false
|
2023-12-19 00:15:48 +02:00
|
|
|
var floor_corner: StaticBody3D = null
|
|
|
|
var height_corner: StaticBody3D = null
|
2023-12-21 19:35:43 +02:00
|
|
|
var height_edge: StaticBody3D = null
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
func _on_enter():
|
2024-01-27 16:13:43 +02:00
|
|
|
var room_store = Store.house.get_room(room.name)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
2024-01-27 16:13:43 +02:00
|
|
|
if room_store == null:
|
|
|
|
return
|
|
|
|
|
|
|
|
var corners = room_store.corners
|
|
|
|
|
|
|
|
if corners.size() > 0:
|
2024-01-29 16:35:58 +02:00
|
|
|
add_floor_corner(room.to_local(Vector3(corners[0].x, 0, corners[0].y)))
|
|
|
|
add_height_corner(room.to_local(Vector3(corners[0].x, 0, corners[0].y)))
|
2024-01-27 16:13:43 +02:00
|
|
|
room.room_ceiling.position.y = room_store.height
|
2024-01-29 16:35:58 +02:00
|
|
|
height_edge.align_to_corners(floor_corner.position, floor_corner.position + Vector3.UP * room.room_ceiling.position.y)
|
2024-01-27 16:13:43 +02:00
|
|
|
|
|
|
|
for i in range(1, corners.size()):
|
2024-01-29 16:35:58 +02:00
|
|
|
add_corner(room.to_local(Vector3(corners[i].x, 0, corners[i].y)))
|
2023-12-19 00:15:48 +02:00
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
room.room_ceiling.get_node("CollisionShape3D").disabled = (floor_corner == null&&height_corner == null)
|
2024-01-25 13:36:33 +02:00
|
|
|
room.room_floor.get_node("CollisionShape3D").disabled = false
|
2023-12-21 17:44:56 +02:00
|
|
|
|
|
|
|
var ceiling_shape = WorldBoundaryShape3D.new()
|
|
|
|
ceiling_shape.plane = Plane(Vector3.DOWN, 0)
|
|
|
|
|
|
|
|
room.room_ceiling.get_node("CollisionShape3D").shape = ceiling_shape
|
|
|
|
room.room_floor.get_node("CollisionShape3D").shape = WorldBoundaryShape3D.new()
|
|
|
|
|
2023-12-19 00:15:48 +02:00
|
|
|
room.room_ceiling.get_node("Clickable").on_click.connect(_on_click_ceiling)
|
|
|
|
room.room_floor.get_node("Clickable").on_click.connect(_on_click_floor)
|
|
|
|
|
|
|
|
func _on_leave():
|
2024-01-27 16:13:43 +02:00
|
|
|
update_store()
|
|
|
|
|
|
|
|
for child in room.wall_corners.get_children():
|
2024-05-10 02:00:31 +03:00
|
|
|
room.wall_corners.remove_child(child)
|
2024-01-27 16:13:43 +02:00
|
|
|
child.queue_free()
|
2024-01-25 17:29:33 +02:00
|
|
|
|
2024-01-27 16:13:43 +02:00
|
|
|
for child in room.wall_edges.get_children():
|
2024-05-10 02:00:31 +03:00
|
|
|
room.wall_edges.remove_child(child)
|
2024-01-27 16:13:43 +02:00
|
|
|
child.queue_free()
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
if floor_corner != null:
|
2024-05-10 02:00:31 +03:00
|
|
|
room.remove_child(floor_corner)
|
2024-01-27 16:13:43 +02:00
|
|
|
floor_corner.queue_free()
|
2024-05-10 02:00:31 +03:00
|
|
|
room.remove_child(height_edge)
|
2024-01-27 16:13:43 +02:00
|
|
|
height_edge.queue_free()
|
2023-12-19 00:15:48 +02:00
|
|
|
|
2024-01-25 13:36:33 +02:00
|
|
|
room.room_ceiling.get_node("CollisionShape3D").disabled = true
|
|
|
|
room.room_floor.get_node("CollisionShape3D").disabled = true
|
|
|
|
|
2023-12-19 00:15:48 +02:00
|
|
|
room.room_ceiling.get_node("Clickable").on_click.disconnect(_on_click_ceiling)
|
|
|
|
room.room_floor.get_node("Clickable").on_click.disconnect(_on_click_floor)
|
|
|
|
|
2024-01-27 16:13:43 +02:00
|
|
|
func get_corner(index: int) -> MeshInstance3D:
|
|
|
|
return room.wall_corners.get_child(index % room.wall_corners.get_child_count())
|
|
|
|
|
|
|
|
func get_edge(index: int) -> MeshInstance3D:
|
|
|
|
return room.wall_edges.get_child(index % room.wall_edges.get_child_count())
|
|
|
|
|
|
|
|
func remove_corner(index: int):
|
|
|
|
get_corner(index).queue_free()
|
|
|
|
get_edge(index).queue_free()
|
|
|
|
|
2023-12-19 00:15:48 +02:00
|
|
|
func _on_click_floor(event):
|
2024-04-10 16:59:27 +03:00
|
|
|
if floor_corner != null&&height_corner != null:
|
2023-12-19 00:15:48 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
add_floor_corner(event.ray.get_collision_point())
|
|
|
|
add_height_corner(event.ray.get_collision_point())
|
|
|
|
room.room_ceiling.get_node("CollisionShape3D").disabled = false
|
|
|
|
|
|
|
|
func _on_click_ceiling(event):
|
2024-04-10 16:59:27 +03:00
|
|
|
if floor_corner == null||height_corner == null||event.target != room.room_ceiling:
|
2023-12-19 00:15:48 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
var pos = event.ray.get_collision_point()
|
|
|
|
pos.y = 0
|
|
|
|
|
|
|
|
add_corner(pos)
|
|
|
|
|
|
|
|
func add_floor_corner(position: Vector3):
|
|
|
|
floor_corner = wall_corner_scene.instantiate()
|
|
|
|
floor_corner.position = position
|
|
|
|
|
|
|
|
height_edge = wall_edge_scene.instantiate()
|
2024-01-25 17:29:33 +02:00
|
|
|
height_edge.align_to_corners(position, position + Vector3.UP * room.room_ceiling.position.y)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
floor_corner.get_node("Clickable").on_grab_down.connect(func(event):
|
2024-04-10 16:59:27 +03:00
|
|
|
if !is_active()||moving != null:
|
2023-12-19 00:15:48 +02:00
|
|
|
return
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
moving=event.target
|
2023-12-19 00:15:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
floor_corner.get_node("Clickable").on_grab_move.connect(func(event):
|
|
|
|
if moving == null:
|
|
|
|
return
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
var moving_index=height_corner.get_index()
|
|
|
|
var direction=- event.ray.global_transform.basis.z
|
|
|
|
var new_position=room.room_floor.get_node("CollisionShape3D").shape.plane.intersects_ray(event.ray.global_position, direction)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
if new_position == null:
|
|
|
|
return
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
moving.position=new_position
|
2023-12-19 00:15:48 +02:00
|
|
|
|
2024-01-24 18:43:44 +02:00
|
|
|
height_edge.align_to_corners(new_position, new_position + Vector3.UP * room.room_ceiling.global_position.y)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
get_corner(moving_index).position.x=new_position.x
|
|
|
|
get_corner(moving_index).position.z=new_position.z
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
if room.wall_edges.get_child_count() == 0:
|
|
|
|
return
|
|
|
|
|
2024-01-27 16:38:47 +02:00
|
|
|
get_edge(moving_index).align_to_corners(new_position, get_corner(moving_index + 1).position)
|
2024-04-10 16:59:27 +03:00
|
|
|
get_edge(moving_index - 1).align_to_corners(get_corner(moving_index - 1).position, new_position)
|
2023-12-19 00:15:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
floor_corner.get_node("Clickable").on_grab_up.connect(func(_event):
|
2024-04-10 16:59:27 +03:00
|
|
|
moving=null
|
2023-12-19 00:15:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
room.add_child(floor_corner)
|
|
|
|
room.add_child(height_edge)
|
|
|
|
|
|
|
|
func add_height_corner(position: Vector3):
|
|
|
|
height_corner = wall_corner_scene.instantiate()
|
|
|
|
height_corner.position.x = position.x
|
|
|
|
height_corner.position.z = position.z
|
|
|
|
|
|
|
|
height_corner.get_node("Clickable").on_grab_down.connect(func(event):
|
2024-04-10 16:59:27 +03:00
|
|
|
if !is_active()||moving != null:
|
2023-12-19 00:15:48 +02:00
|
|
|
return
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
moving=event.target
|
2023-12-19 00:15:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
height_corner.get_node("Clickable").on_grab_move.connect(func(event):
|
|
|
|
if moving == null:
|
|
|
|
return
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
var direction=- event.ray.global_transform.basis.z
|
|
|
|
var plane_direction=direction
|
|
|
|
plane_direction.y=0
|
|
|
|
plane_direction=plane_direction.normalized() * - 1
|
2023-12-19 00:15:48 +02:00
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
var plane=Plane(plane_direction, moving.position)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
var new_position=plane.intersects_ray(event.ray.global_position, direction)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
if new_position == null:
|
|
|
|
return
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
room.room_ceiling.position.y=new_position.y
|
2024-01-29 16:35:58 +02:00
|
|
|
height_edge.align_to_corners(floor_corner.position, floor_corner.position + Vector3.UP * room.room_ceiling.position.y)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
height_corner.get_node("Clickable").on_grab_up.connect(func(_event):
|
2024-04-10 16:59:27 +03:00
|
|
|
moving=null
|
2023-12-19 00:15:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
room.wall_corners.add_child(height_corner)
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
func add_corner(position: Vector3, index: int=- 1):
|
2023-12-19 00:15:48 +02:00
|
|
|
var corner = wall_corner_scene.instantiate()
|
|
|
|
corner.position.x = position.x
|
|
|
|
corner.position.z = position.z
|
|
|
|
|
|
|
|
corner.get_node("Clickable").on_grab_down.connect(func(event):
|
2024-04-10 16:59:27 +03:00
|
|
|
if !is_active()||moving != null:
|
2023-12-19 00:15:48 +02:00
|
|
|
return
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
moving=event.target
|
2023-12-19 00:15:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
corner.get_node("Clickable").on_grab_move.connect(func(event):
|
|
|
|
if moving == null:
|
|
|
|
return
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
var moving_index=moving.get_index()
|
|
|
|
var direction=- event.ray.global_transform.basis.z
|
|
|
|
var ceiling_plane=Plane(Vector3.DOWN, room.room_ceiling.global_position)
|
|
|
|
var new_position=ceiling_plane.intersects_ray(event.ray.global_position, direction)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
if new_position == null:
|
2024-04-10 16:59:27 +03:00
|
|
|
deleting=true
|
2023-12-21 19:35:43 +02:00
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
new_position=event.ray.global_position + direction
|
2023-12-21 19:35:43 +02:00
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
get_corner(moving_index).global_position=new_position
|
2023-12-21 19:35:43 +02:00
|
|
|
|
|
|
|
if room.wall_edges.get_child_count() == 0:
|
|
|
|
return
|
|
|
|
|
2024-01-27 16:38:47 +02:00
|
|
|
get_edge(moving_index).align_to_corners(get_corner(moving_index - 1).position, get_corner(moving_index + 1).position)
|
2024-04-10 16:59:27 +03:00
|
|
|
get_edge(moving_index - 1).transform=get_edge(moving_index).transform
|
2023-12-21 19:35:43 +02:00
|
|
|
|
2023-12-19 00:15:48 +02:00
|
|
|
return
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
deleting=false
|
2023-12-21 19:35:43 +02:00
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
new_position.y=0
|
2023-12-19 00:15:48 +02:00
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
moving.position=new_position
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
if room.wall_edges.get_child_count() == 0:
|
|
|
|
return
|
|
|
|
|
2024-01-27 16:38:47 +02:00
|
|
|
get_edge(moving_index).align_to_corners(new_position, get_corner(moving_index + 1).position)
|
2024-04-10 16:59:27 +03:00
|
|
|
get_edge(moving_index - 1).align_to_corners(get_corner(moving_index - 1).position, new_position)
|
2023-12-19 00:15:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
corner.get_node("Clickable").on_grab_up.connect(func(_event):
|
2023-12-21 19:35:43 +02:00
|
|
|
if deleting:
|
2024-04-10 16:59:27 +03:00
|
|
|
var moving_index=moving.get_index()
|
2024-01-27 16:38:47 +02:00
|
|
|
remove_corner(moving_index)
|
2023-12-21 19:35:43 +02:00
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
moving=null
|
|
|
|
deleting=false
|
2023-12-19 00:15:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
room.wall_corners.add_child(corner)
|
2023-12-21 19:35:43 +02:00
|
|
|
room.wall_corners.move_child(corner, index)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
|
|
|
var num_corners = room.wall_corners.get_child_count()
|
|
|
|
|
|
|
|
if num_corners > 1:
|
2024-01-27 16:38:47 +02:00
|
|
|
add_edge(position, get_corner(index + 1).position, index)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
2023-12-21 19:35:43 +02:00
|
|
|
if num_corners > 2:
|
2023-12-19 00:15:48 +02:00
|
|
|
if num_corners != room.wall_edges.get_child_count():
|
2024-04-10 16:59:27 +03:00
|
|
|
add_edge(get_corner( - 2).position, get_corner( - 1).position, -2)
|
2023-12-19 00:15:48 +02:00
|
|
|
else:
|
2024-01-27 16:38:47 +02:00
|
|
|
get_edge(index - 1).align_to_corners(get_corner(index - 1).position, position)
|
2023-12-19 00:15:48 +02:00
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
func add_edge(from_pos: Vector3, to_pos: Vector3, index: int=- 1):
|
2023-12-21 19:35:43 +02:00
|
|
|
var edge: StaticBody3D = wall_edge_scene.instantiate()
|
2024-01-24 18:43:44 +02:00
|
|
|
edge.align_to_corners(from_pos, to_pos)
|
2023-12-21 19:35:43 +02:00
|
|
|
|
|
|
|
edge.get_node("Clickable").on_press_down.connect(func(event):
|
2024-04-10 16:59:27 +03:00
|
|
|
var point=event.ray.get_collision_point()
|
|
|
|
point.y=0
|
2023-12-21 19:35:43 +02:00
|
|
|
add_corner(point, edge.get_index() + 1)
|
|
|
|
)
|
|
|
|
|
2023-12-19 00:15:48 +02:00
|
|
|
room.wall_edges.add_child(edge)
|
2023-12-21 19:35:43 +02:00
|
|
|
room.wall_edges.move_child(edge, index)
|
2024-01-27 16:13:43 +02:00
|
|
|
return edge
|
|
|
|
|
|
|
|
func update_store():
|
|
|
|
var store_room = Store.house.get_room(room.name)
|
|
|
|
|
2024-01-29 16:35:58 +02:00
|
|
|
if store_room == null:
|
|
|
|
return
|
|
|
|
|
2024-01-27 16:13:43 +02:00
|
|
|
var corners = []
|
|
|
|
|
|
|
|
for corner in room.wall_corners.get_children():
|
2024-01-29 16:35:58 +02:00
|
|
|
corners.append(Vector2(corner.global_position.x, corner.global_position.z))
|
2024-01-27 16:13:43 +02:00
|
|
|
|
|
|
|
store_room.corners = corners
|
|
|
|
store_room.height = room.room_ceiling.position.y
|
|
|
|
|
2024-04-10 16:59:27 +03:00
|
|
|
# Manually update the array
|
|
|
|
Store.house.state.rooms = Store.house.state.rooms
|
|
|
|
|
2024-01-27 16:13:43 +02:00
|
|
|
Store.house.save_local()
|