conforms file names to consistant standard
This commit is contained in:
74
scripts/chatbox.gd
Normal file
74
scripts/chatbox.gd
Normal file
@@ -0,0 +1,74 @@
|
||||
class_name Chatbox
|
||||
extends Control
|
||||
|
||||
signal opened
|
||||
signal closed
|
||||
|
||||
@export var input_line: LineEdit
|
||||
@export var textbox: RichTextLabel
|
||||
@export var text_panel: PanelContainer
|
||||
@export var fade_timer: Timer
|
||||
|
||||
var text_selected: bool = false
|
||||
var username: String = "default"
|
||||
var color: Color = Color.TOMATO
|
||||
var fading: bool = true
|
||||
var time_to_fade: float = 2.0
|
||||
var time_since_started_fading: float = 2.0
|
||||
var game_manager: GameManager
|
||||
|
||||
|
||||
func _process(delta: float) -> void:
|
||||
if fading:
|
||||
time_since_started_fading += delta
|
||||
else:
|
||||
time_since_started_fading = 0.0
|
||||
textbox.modulate.a = lerpf(1.0, 0.0, time_since_started_fading / time_to_fade)
|
||||
text_panel.modulate.a = lerpf(1.0, 0.0, time_since_started_fading / time_to_fade)
|
||||
|
||||
|
||||
func _input(event: InputEvent) -> void:
|
||||
if !text_selected and event.is_action_pressed("Open Text Chat"):
|
||||
get_viewport().set_input_as_handled()
|
||||
opened.emit()
|
||||
input_line.visible = true
|
||||
input_line.grab_focus()
|
||||
text_selected = true
|
||||
fading = false
|
||||
return
|
||||
if text_selected and event is InputEventKey and event.pressed == true:
|
||||
if event.keycode == KEY_ENTER:
|
||||
get_viewport().set_input_as_handled()
|
||||
closed.emit()
|
||||
input_line.deselect()
|
||||
input_line.visible = false
|
||||
text_selected = false
|
||||
if input_line.text.length() != 0:
|
||||
if input_line.text.begins_with("/"):
|
||||
game_manager.parse_command(input_line.text, multiplayer.get_unique_id())
|
||||
else:
|
||||
append_message.rpc(username, color, input_line.text)
|
||||
input_line.clear()
|
||||
fade_timer.start()
|
||||
if event.keycode == KEY_ESCAPE:
|
||||
get_viewport().set_input_as_handled()
|
||||
closed.emit()
|
||||
input_line.deselect()
|
||||
input_line.visible = false
|
||||
text_selected = false
|
||||
fade_timer.start()
|
||||
|
||||
|
||||
func change_username(old_name: String, new_name: String) -> void:
|
||||
append_message("SERVER", Color.TOMATO, old_name + " has changed their display name to " + new_name)
|
||||
|
||||
|
||||
@rpc("reliable", "call_local", "any_peer")
|
||||
func append_message(user: String, user_color: Color, content: String) -> void:
|
||||
textbox.append_text("[[color=" + user_color.to_html() + "]" + user + "[color=white]] " + content + "\n")
|
||||
fading = false
|
||||
fade_timer.start()
|
||||
|
||||
|
||||
func _on_timer_timeout() -> void:
|
||||
fading = true
|
||||
Reference in New Issue
Block a user