mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-14 14:30:24 +01:00
55b0a0577d
- Don't add the bell to the archive to keep it small a simplify licensing. Also bells seem to be rarely used with terminal emulators. - Don't play the bell directly from the Terminal node by adding an AudioStreamPlayer, but make it easy to tune the "bell" signal behavior from the Terminal node so that only an AudioStreamPlayer node's play() method needs to be connected to it. - Keep the bell.wav sound around for testing/demo.
31 lines
730 B
GDScript
31 lines
730 B
GDScript
extends "res://addons/gut/test.gd"
|
|
|
|
var term: GDXterm.Terminal
|
|
|
|
|
|
func before_each():
|
|
term = GDXterm.Terminal.new()
|
|
term.rect_size = Vector2(400, 200)
|
|
add_child_autofree(term)
|
|
|
|
|
|
func test_bell() -> void:
|
|
term.bell_cooldown = 0
|
|
term.write(char(7))
|
|
term.write(char(0x07))
|
|
term.write("\a")
|
|
term.write("\u0007")
|
|
term.write("'Ask not for whom the \a tolls; it tolls for thee' - John Donne")
|
|
yield(yield_to(term, "bell", 1), YIELD)
|
|
assert_signal_emit_count(term, "bell", 5)
|
|
|
|
|
|
func test_bell_cooldown() -> void:
|
|
watch_signals(term)
|
|
term.bell_cooldown = 0.5
|
|
term.write("\a")
|
|
term.write("\a")
|
|
yield(yield_for(0.5), YIELD)
|
|
term.write("\a")
|
|
yield(yield_to(term, "bell", 1), YIELD)
|
|
assert_signal_emit_count(term, "bell", 2)
|