8 Commits

Author SHA1 Message Date
8cc85e3d6c Ajout de l'intégration twitch 2026-06-25 18:25:32 +02:00
24d19310b5 Ajout de l'addon twitch 2026-06-25 18:23:08 +02:00
a7dcd6d725 Correction de bug de Dialogic et réparation de la décontamination de la planète de l'écran titre 2026-06-22 20:44:06 +02:00
caace67d12 Revert des changements spécial démo 2026-06-22 20:43:25 +02:00
b137360fa4 Correction des fichiers d'import des plantes (changements auto faits par Godot) 2026-06-22 20:39:30 +02:00
89c04f5d0c Merge branch 'demo' 2026-06-22 20:19:48 +02:00
Altaezio
e03bfc580e new mutations wip 2026-05-28 17:05:04 +02:00
4c4b051f3f Fix divers beta 1.4
* Changement du son de récupération d'objet
* Ajout d'une couleur de rareté et suppression de la boucle sur la couleur de rareté
* Changement de la mutation Prolifique : n'ajoute des graines que si mature
* Changement de la mutation Rapide : réduction du debuff de temps de vie par 2
* Modification de la mutation Vivace : Augmentation des points ajoutés
* Les graines données sur des plantes non mature ne mutent plus
* Fix sur la plantation, on ne peut plus planter là où il y a de la roche
* Fix visuel : les particule de vent ne s'affichent plus lorsqu'il pleut
2026-05-17 16:40:22 +02:00
78 changed files with 2428 additions and 48 deletions

View File

@@ -9,17 +9,18 @@ class_name DialogicNode_NameLabel
@export var use_character_color := true
func _ready() -> void:
add_to_group('dialogic_name_label')
if hide_when_empty:
name_label_root.visible = false
text = ""
add_to_group('dialogic_name_label')
if hide_when_empty:
name_label_root.visible = false
text = ""
func _set(property, what):
if property == 'text' and typeof(what) == TYPE_STRING:
text = what
if hide_when_empty:
name_label_root.visible = !what.is_empty()
else:
name_label_root.show()
return true
if property == 'text' and typeof(what) == TYPE_STRING:
text = what
if hide_when_empty:
name_label_root.visible = !what.is_empty()
else:
name_label_root.show()
return true
return false

View File

@@ -0,0 +1,101 @@
class_name VSTAuthServer
extends Node
signal OnTokenReceived(token: String)
var SERVER_IDENTITY = 'AUTH_SERVER'
var TOKEN_KEY = 'token'
var AUTHENTICATION_REDIRECT_FILE_PATH = 'res://addons/very-simple-twitch/public/index.html'
var _clients: Array[StreamPeerTCP] = []
var _server: TCPServer
func start_server(port: int):
_server = TCPServer.new()
_server.listen(port)
print("Server started")
func stop_server():
if _server:
_server.stop()
_server = null
func _process(_delta: float) -> void:
if !_server:
return
var newConnection = _server.take_connection()
if newConnection:
_clients.push_back(newConnection)
for client in _clients:
if client.get_status() != StreamPeerTCP.STATUS_CONNECTED:
continue
var bytes = client.get_available_bytes()
# after finisher reading bytes clear connection
_clients = _clients.filter(func (item): return item != client)
var requestAsString = client.get_string(bytes)
if requestAsString.length() < 1:
continue
var requestInformation = requestAsString.split('\n')[0].split(' ')
var method = requestInformation[0]
var url = requestInformation[1]
match method:
'GET':
# send html login page
handleGet(client)
'POST':
# handle token extraction
handlePost(client, url)
func handlePost(client: StreamPeer, url: String):
var urlSplitted:PackedStringArray = url.split('?')
if (len(urlSplitted) == 1):
return
var query = urlSplitted[1]
var token = getTokenFromQuery(query)
if !token:
return
OnTokenReceived.emit(token)
send200(client)
stop_server()
queue_free()
func handleGet(client: StreamPeer):
var pageAsString = loadLoginPage()
send200(client, pageAsString)
func getTokenFromQuery(query: String):
var queryKeyValues = query.split('&')
for keyValue in queryKeyValues:
var splittedKeyValue = keyValue.split('=')
var key = splittedKeyValue[0]
if key == TOKEN_KEY:
return splittedKeyValue[1]
func send200(client: StreamPeer, data: String = "", content_type: String = "text/html"):
var dataAsBuffer = data.to_ascii_buffer()
client.put_data(("HTTP/1.1 %d %s\r\n" % [200, 'OK']).to_ascii_buffer())
client.put_data(("Server: %s\r\n" % SERVER_IDENTITY).to_ascii_buffer())
client.put_data(("Content-Length: %d\r\n" % dataAsBuffer.size()).to_ascii_buffer())
client.put_data("Connection: close\r\n".to_ascii_buffer())
client.put_data(("Content-Type: %s\r\n\r\n" % content_type).to_ascii_buffer())
client.put_data(dataAsBuffer)
func loadLoginPage() -> String:
var file = FileAccess.open(AUTHENTICATION_REDIRECT_FILE_PATH, FileAccess.READ)
var loadedFile: String = file.get_as_text()
file.close()
return loadedFile

View File

@@ -0,0 +1 @@
uid://cfwdtrrd8w61s

View File

@@ -0,0 +1,145 @@
@tool
extends Control
const MAX_MESSAGES:int = 50
var line: PackedScene = load("res://addons/very-simple-twitch/chat/vst_chat_dock_line.tscn")
var twitch_chat: VSTChat:
get:
if twitch_chat == null:
twitch_chat = VSTChat.new()
add_child(twitch_chat)
return twitch_chat
@onready var support_button: Button = %SupportButton
@onready var channel_line_edit: LineEdit = %ChannelLineEdit
@onready var connect_button: Button = %ConnectButton
@onready var chat_layout: Control = %ChatLayout
@onready var chat_scroll:ScrollContainer = %ChatScroll
@onready var clear_button:Button = %ClearButton
@onready var disconnect_button:Button = %DisconnectButton
func _ready():
support_button.icon = get_theme_icon("Heart", "EditorIcons")
support_button.tooltip_text = "Support me on Ko-fi"
func _on_button_pressed():
twitch_chat.Connected.connect(on_chat_connected)
twitch_chat.OnMessage.connect(create_chatter_msg)
twitch_chat.login_anon(channel_line_edit.text)
connect_button.disabled = true
channel_line_edit.editable = false
func _on_clear_button_pressed():
clear_all_messages()
func _on_line_edit_text_changed(new_text):
connect_button.disabled = len(new_text) == 0
func _on_disconnect_button_pressed():
twitch_chat.disconnect_api()
clear_all_messages()
show_connect_layout()
if twitch_chat.Connected.is_connected(on_chat_connected):
twitch_chat.Connected.disconnect(on_chat_connected)
if twitch_chat.OnMessage.is_connected(create_chatter_msg):
twitch_chat.OnMessage.disconnect(create_chatter_msg)
func _on_support_button_pressed() -> void:
OS.shell_open("https://ko-fi.com/rothiotome?ref=VST")
func on_chat_connected():
create_system_msg("Connected to chat")
show_chat_layout()
func create_system_msg(message: String):
var msg = line.instantiate()
msg.set_chatter_string("[i]"+message+"[/i]")
chat_layout.add_child(msg)
check_scroll()
func create_chatter_msg(chatter: VSTChatter):
var msg = line.instantiate()
var badges: String = await get_badges(chatter)
chatter.message = escape_bbcode(chatter.message)
await add_emotes(chatter)
msg.set_chatter_msg(badges, chatter)
chat_layout.add_child(msg)
check_scroll()
func check_scroll():
var bottom: bool = is_scroll_bottom()
check_number_messages()
await get_tree().process_frame
if bottom: chat_scroll.scroll_vertical = chat_scroll.get_v_scroll_bar().max_value
func check_number_messages():
if chat_layout.get_child_count() > MAX_MESSAGES:
chat_layout.remove_child(chat_layout.get_children()[0])
# TODO: Can't get badges when the connection is annonymous, we should clear this method
func get_badges(chatter: VSTChatter) -> String:
var badges:= ""
for badge in chatter.tags.badges:
var result = await twitch_chat.get_badge(badge, chatter.tags.badges[badge], chatter.tags.user_id)
if result:
badges += "[img=center]" + result.resource_path + "[/img] "
return badges
func add_emotes(chatter: VSTChatter):
if chatter.tags.emotes.is_empty(): return
var locations: Array = []
for emote in chatter.tags.emotes:
for data in chatter.tags.emotes[emote].split(","):
var start_end = data.split("-")
locations.append(VSTEmoteLocation.new(emote, int(start_end[0]), int(start_end[1])))
locations.sort_custom(Callable(VSTEmoteLocation, "smaller"))
var offset = 0
for loc in locations:
var result = await twitch_chat.get_emote(loc.id)
var emote_string = "[img=center]" + result.resource_path +"[/img]"
var pre: String = chatter.message.substr(0, loc.start + offset)
var post: String = chatter.message.substr(loc.end + offset + 1)
chatter.message = pre + emote_string + post
offset += emote_string.length() + loc.start - loc.end - 1
func is_scroll_bottom() -> bool:
var scroll_bar = chat_scroll.get_v_scroll_bar()
return chat_scroll.scroll_vertical >= scroll_bar.max_value - scroll_bar.get_rect().size.y
# Returns escaped BBCode that won't be parsed by RichTextLabel as tags.
func escape_bbcode(bbcode_text) -> String:
return bbcode_text.replace("[", "[lb]")
func clear_all_messages():
for childen in chat_layout.get_children():
chat_layout.remove_child(childen)
func show_chat_layout():
disconnect_button.visible = true
clear_button.visible = true
channel_line_edit.visible = false
connect_button.visible = false
func show_connect_layout():
disconnect_button.visible = false
clear_button.visible = false
channel_line_edit.editable = true
channel_line_edit.visible = true
connect_button.visible = true
connect_button.disabled = false

View File

@@ -0,0 +1 @@
uid://lsv481dwwwpu

View File

@@ -0,0 +1,111 @@
[gd_scene load_steps=4 format=3 uid="uid://c8jard0jvmfmt"]
[ext_resource type="Script" path="res://addons/very-simple-twitch/chat/vst_chat_dock.gd" id="1_fkddh"]
[sub_resource type="Image" id="Image_dfhsm"]
data = {
"data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 93, 93, 41, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0),
"format": "RGBA8",
"height": 16,
"mipmaps": false,
"width": 16
}
[sub_resource type="ImageTexture" id="ImageTexture_lqqxv"]
image = SubResource("Image_dfhsm")
[node name="VstChatDock" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_fkddh")
[node name="TabContainer" type="TabContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
current_tab = 0
[node name="Chat" type="VBoxContainer" parent="TabContainer"]
layout_mode = 2
metadata/_tab_index = 0
[node name="HBoxContainer" type="HBoxContainer" parent="TabContainer/Chat"]
layout_mode = 2
[node name="ChannelLineEdit" type="LineEdit" parent="TabContainer/Chat/HBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
size_flags_horizontal = 3
placeholder_text = "Channel name"
[node name="ConnectButton" type="Button" parent="TabContainer/Chat/HBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
disabled = true
text = "CONNECT"
[node name="ClearButton" type="Button" parent="TabContainer/Chat/HBoxContainer"]
unique_name_in_owner = true
visible = false
layout_mode = 2
text = "CLEAR CHAT"
[node name="DisconnectButton" type="Button" parent="TabContainer/Chat/HBoxContainer"]
unique_name_in_owner = true
visible = false
layout_mode = 2
text = "DISCONNECT"
[node name="VBoxContainer" type="VBoxContainer" parent="TabContainer/Chat"]
layout_mode = 2
size_flags_vertical = 3
[node name="Chat" type="Panel" parent="TabContainer/Chat/VBoxContainer"]
layout_mode = 2
size_flags_vertical = 3
[node name="ChatScroll" type="ScrollContainer" parent="TabContainer/Chat/VBoxContainer/Chat"]
unique_name_in_owner = true
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="ChatLayout" type="VBoxContainer" parent="TabContainer/Chat/VBoxContainer/Chat/ChatScroll"]
unique_name_in_owner = true
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="HBoxContainer" type="HBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 1
anchor_left = 1.0
anchor_right = 1.0
offset_left = -8.0
offset_bottom = 33.0
grow_horizontal = 0
alignment = 2
[node name="SupportButton" type="Button" parent="HBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
size_flags_horizontal = 8
tooltip_text = "Support me on Ko-fi"
icon = SubResource("ImageTexture_lqqxv")
flat = true
[connection signal="text_changed" from="TabContainer/Chat/HBoxContainer/ChannelLineEdit" to="." method="_on_line_edit_text_changed"]
[connection signal="pressed" from="TabContainer/Chat/HBoxContainer/ConnectButton" to="." method="_on_button_pressed"]
[connection signal="pressed" from="TabContainer/Chat/HBoxContainer/ClearButton" to="." method="_on_clear_button_pressed"]
[connection signal="pressed" from="TabContainer/Chat/HBoxContainer/DisconnectButton" to="." method="_on_disconnect_button_pressed"]
[connection signal="pressed" from="HBoxContainer/SupportButton" to="." method="_on_support_button_pressed"]

View File

@@ -0,0 +1,9 @@
@tool
extends HBoxContainer
func set_chatter_msg(badges: String, chatter: VSTChatter):
set_chatter_string("%02d:%02d" %[chatter.date_time_dict["hour"], chatter.date_time_dict["minute"]] + " " + badges + " [b][color="+ chatter.tags.color_hex + "]" +chatter.tags.display_name +"[/color][/b]: " + chatter.message)
func set_chatter_string(message:String):
$RichTextLabel.text = message
queue_sort()

View File

@@ -0,0 +1 @@
uid://u504g1u250up

View File

@@ -0,0 +1,16 @@
[gd_scene load_steps=2 format=3 uid="uid://bo1un8cwcrpqr"]
[ext_resource type="Script" path="res://addons/very-simple-twitch/chat/vst_chat_dock_line.gd" id="1_h0lnd"]
[node name="VstChatDockLine" type="HBoxContainer"]
offset_right = 1.0
offset_bottom = 115.0
size_flags_horizontal = 3
script = ExtResource("1_h0lnd")
[node name="RichTextLabel" type="RichTextLabel" parent="."]
layout_mode = 2
size_flags_horizontal = 3
bbcode_enabled = true
fit_content = true
scroll_active = false

View File

@@ -0,0 +1,32 @@
# Errors
## Information
This page is to explain the use and implementation of errors in VST. Errors have 3 parameters for code, description and extra information.
* error_code (enum @see VST_Error.VST_Code_Error) -> This parameter groups the types of errors in a general way.
* description (String) -> The description of the error is a general description of the general grouping in human language.
* info (String) -> The information is the particular description of the error. It should be used to add extra information about the particular error.
## New errors
To add new errors you must first ask yourself if it is necessary to add a new code or not. If necessary add the code in the VST_Error.VST_Code_Error enumeration.
To illustrate the error let's imagine that we have a function that updates the area of a triangle given a base and a height. This function updates an area parameter only if it is possible to calculate the area (the base or the height is greater than 0).
```GDScript
func calculateArea(base:int, heigth:int):
if base <= 0:
var error:VST_Error = VST_Error.new(VST_Error.VST_Code_Error.PARAM_ERROR, "base can't be less than or equals 0")
push_warning(str(error))
area = 0
elif height <= 0:
var error:VST_Error = VST_Error.new(VST_Error.VST_Code_Error.PARAM_ERROR, "height can't be less than or equals 0")
push_warning(str(error))
area = 0
else
area = (base*height)/2
```
## Error Codes
* PARAM_ERROR Use this code for errors that have to do with invalid parameters. An int that should be a String or a String that cannot be empty.
* TIMEOUT_ERROR Use this code when a timer runs out or there is no response from a system.
* NETWORK_ERROR Use this code when there is a network error ( > 400 and < 500)
* SERVER_ERROR Use this code when, in a network communication, the server is down or has a problem ( > 500 ).

View File

@@ -0,0 +1,46 @@
# Network
## Information
The motivation for using this wrapper is to make easier the call APIs and gather responses and errors from the server. The idea is to make it as verbose as possible using a builder pattern so the request can be read at first glance.
Before making the network call, the wrapper will check a number of conditions within the "check_request_data" method which will throw a number of errors or warnings if the request is not well built. The wrapper is permissive with the definition of REST APIs, so you can have a GET call with body or a POST with GET parameters in the url (TBD).
Note: To achieve this effect, it is necessary to call new() and pass a node to the "launch_request" method, which will self manage all that's necessary for it to work.
## Usage
To use the wrapper for network requests simply build a Network_Call object and start configuring it with the to, with, etc... methods.
* to (String) -> url destination
* with (String) -> request body
* add_get_param (String,String) y add_all_get_param(Dictionary) -> add get params to request
* add_header(String,String) y add_all_header(Dictionary) -> add headers to request
* verb(Http_Method) -> set the method for REST request
* in_time(int) -> set the timeout time to the request
* set_on_call_success (Callable) -> call this function if the request was ok (200)
* set_on_call_fail (Callable) -> call this function if the request was fail (>400)
* no_cache -> set no cache for request ( only used in GET requests )
## Example
```GDScript
func _onReady():
Network_Call.new().to("https://catfact.ninja/fact").set_on_call_success(on_cat_fact).set_on_call_fail(on_error).launch_request(self)
func on_cat_fact(result):
$Label.text = str(result)
func on_error(error):
$Label.text = "Error requesting fact about cats :("
```
## Cache
The network module has a cache for GET requests to save time and bandwidth for similar requests in 'short' time spans.
Since nodes are ephemeral (network requests are nodes that disappear) the cache is stored on disk and not in memory (this resposability was left for the upper layers).
The cache works as follows:
* 1. The request is hashed ( using the url )
* 2. A file with the specific name ( the hash ) is searched for on disk.
* 3.a If it exists and it has not passed 300 seconds ( arbitrary and improvable time using an etag? ) the request is resolved and returns the file content.
* 3.b If the file does not exist or it has been more than 300 seconds, the request is made and cached using the same hash.
The time validity of this cache is on CACHE_TIME_IN_SECONDS constant in network_call.gd
The cached content is an array of bytes due to the heterogeneous nature of the possible requests (text, images, sound...).

View File

@@ -0,0 +1,21 @@
# Testing
## Adding test
Use "assert_eq" for "primitive" values and "assert_eq_deep" for complex data
For add some test be sure:
1. Your test are inside /test folder
2. Your test file starts with test name
3. Your test script extends from "GutTest"
4. Your test methods starts also with test
You can use some useful methods for testing like:
* before_all -> Excecuted before all tests in the script
* before_each -> Excecuted before each test in the script
* after_each -> Excecuted after each test in the script
* after_all -> Excecuted after all tests in the script
## GUT Documentation
https://gut.readthedocs.io/en/latest/

View File

@@ -0,0 +1,32 @@
# Develop
## GDLint
The idea behind installing a linter in this plugin is mainly code readability. That can make collaboration easier for other developers. Using the same consistent coding style makes it easier to collaborate with others and easier to understand what the plugin is doing.
### Installation
There are a few steps before you can use GDLint. You can consult the official documentation, but here's a summary
1. GDLinter is installed on addons folders. You don't need do nothing with it.
2. Deactivate GDLint from pluggins ( project -> configuration -> plugins )
3. Check your python version using 'python --version' or 'py --version'
- no version installed?
- Check windows store for windows ( best option in my opinion )
- On Mac 'brew install python' using Homebrew
- On Linux, you can use APT 'sudo apt install python3'
4. Install godot toolkit using 'pip3 install "gdtoolkit==4.*"'
- No pip installed? Download the script, from https://bootstrap.pypa.io/get-pip.py and type 'python get-pip.py' to install it.
5. Check gdlint version with 'gdlint --version'
- Nothing or error showed? try repeating the steps from 2
6. Activate GdLint again.
- If GDLint menu at the bottom doesnt appear, relaunch godot.
GDScript Toolkit Documentation -> https://github.com/Scony/godot-gdscript-toolkit
GDLinter Addon Documentation -> https://github.com/el-falso/gdlinter/
### Usage
As soon as you install the plugin and the toolkit you will see a menu at the bottom called GDLint. There it will show the problems with the code :)
![](img/gdlint-usage-1.png?raw=true)

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 KiB

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://beqmxv0pbk5dp"
path="res://.godot/imported/gdlint-usage-1.png-06a3e1d7a5f85d1fd83e80b21ea14d73.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://addons/very-simple-twitch/doc/img/gdlint-usage-1.png"
dest_files=["res://.godot/imported/gdlint-usage-1.png-06a3e1d7a5f85d1fd83e80b21ea14d73.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View File

@@ -0,0 +1,62 @@
@tool
extends Control
@onready var copy_button: Button = %CopyButton
@onready var redirect_uri = %RedirectURI
@onready var client_id_line_edit = %ClientIDLineEdit
@onready var client_id_warning = %ClientIDWarning
@onready var help_icon = %HelpIcon
@onready var warning_icon = %WarningIcon
func _ready():
help_icon.texture = get_theme_icon("Help", "EditorIcons")
warning_icon.texture = get_theme_icon("StatusWarning", "EditorIcons")
copy_button.icon = get_theme_icon("ActionCopy", "EditorIcons")
copy_button.tooltip_text = "Copy Redirect URL to clipboard"
client_id_warning.add_theme_color_override(
"font_color",
EditorInterface.get_editor_settings()\
.get_setting("text_editor/theme/highlighting/comment_markers/warning_color")
)
visibility_changed.connect(on_visibility_changed)
func on_visibility_changed():
if visible:
update_visuals()
ProjectSettings.settings_changed.connect(update_visuals)
else:
if ProjectSettings.settings_changed.is_connected(update_visuals):
ProjectSettings.settings_changed.disconnect(update_visuals)
func update_visuals():
var client_id = VSTSettings.get_setting(VSTSettings.settings.client_id)
var redirect_host = VSTSettings.get_setting(VSTSettings.settings.redirect_host)
var redirect_port = VSTSettings.get_setting(VSTSettings.settings.redirect_port)
var uuid = VSTSettings.get_setting(VSTSettings.settings.uuid)
redirect_uri.text = redirect_host + str(redirect_port) + "/" + uuid
client_id_line_edit.text = client_id
if client_id == "":
client_id_warning.show()
warning_icon.show()
else:
client_id_warning.hide()
warning_icon.hide()
func copy_redirect_uri():
DisplayServer.clipboard_set(redirect_uri.text)
func client_id_submitted():
ProjectSettings.set_setting(
"very_simple_twitch/"+VSTSettings.settings.client_id.path,
client_id_line_edit.text
)
ProjectSettings.save()
func open_url(meta):
OS.shell_open(meta)

View File

@@ -0,0 +1 @@
uid://bn73uslhjp8aj

View File

@@ -0,0 +1,111 @@
[gd_scene load_steps=4 format=3 uid="uid://m77ohpfa7qef"]
[ext_resource type="Script" path="res://addons/very-simple-twitch/dock/vst-dock.gd" id="1_kyfdh"]
[sub_resource type="Image" id="Image_cb0pc"]
data = {
"data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 93, 93, 41, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0),
"format": "RGBA8",
"height": 16,
"mipmaps": false,
"width": 16
}
[sub_resource type="ImageTexture" id="ImageTexture_oh773"]
image = SubResource("Image_cb0pc")
[node name="vst-dock" type="VBoxContainer"]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_kyfdh")
[node name="HBoxContainer" type="HBoxContainer" parent="."]
layout_mode = 2
[node name="HelpIcon" type="TextureRect" parent="HBoxContainer"]
unique_name_in_owner = true
layout_mode = 2
texture = SubResource("ImageTexture_oh773")
stretch_mode = 5
[node name="RichTextLabel2" type="RichTextLabel" parent="HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
focus_mode = 2
bbcode_enabled = true
text = " [url=https://github.com/rothiotome/godot-very-simple-twitch?tab=readme-ov-file#quick-setup]Quick Setup section in the readme[/url] and follow the steps in there.
"
fit_content = true
selection_enabled = true
[node name="Label" type="Label" parent="."]
layout_mode = 2
text = "Quick Start Guide"
[node name="RedirectURI" type="HBoxContainer" parent="."]
layout_mode = 2
[node name="Label" type="Label" parent="RedirectURI"]
layout_mode = 2
size_flags_horizontal = 3
text = "Redirect URI: "
[node name="RedirectURIContainer" type="HBoxContainer" parent="RedirectURI"]
layout_mode = 2
size_flags_horizontal = 3
size_flags_stretch_ratio = 2.0
[node name="RedirectURI" type="RichTextLabel" parent="RedirectURI/RedirectURIContainer"]
unique_name_in_owner = true
layout_mode = 2
size_flags_horizontal = 3
focus_mode = 2
text = "Value"
fit_content = true
selection_enabled = true
[node name="CopyButton" type="Button" parent="RedirectURI/RedirectURIContainer"]
unique_name_in_owner = true
layout_mode = 2
tooltip_text = "Copy Redirect URL to clipboard"
icon = SubResource("ImageTexture_oh773")
[node name="ClientID" type="HBoxContainer" parent="."]
layout_mode = 2
[node name="Label" type="Label" parent="ClientID"]
layout_mode = 2
size_flags_horizontal = 3
text = "Client ID:"
[node name="ClientIDLineEdit" type="LineEdit" parent="ClientID"]
unique_name_in_owner = true
layout_mode = 2
size_flags_horizontal = 3
size_flags_stretch_ratio = 2.0
placeholder_text = "YOUR CLIENT ID HERE"
[node name="Warning" type="HBoxContainer" parent="."]
layout_mode = 2
alignment = 1
[node name="WarningIcon" type="TextureRect" parent="Warning"]
unique_name_in_owner = true
layout_mode = 2
texture = SubResource("ImageTexture_oh773")
stretch_mode = 5
[node name="ClientIDWarning" type="Label" parent="Warning"]
unique_name_in_owner = true
visible = false
layout_mode = 2
theme_override_colors/font_color = Color(0.72, 0.61, 0.48, 1)
text = "To use VST, you need a Client ID. Check the readme above for how to get one."
[connection signal="meta_clicked" from="HBoxContainer/RichTextLabel2" to="." method="open_url"]
[connection signal="pressed" from="RedirectURI/RedirectURIContainer/CopyButton" to="." method="copy_redirect_uri"]
[connection signal="focus_exited" from="ClientID/ClientIDLineEdit" to="." method="client_id_submitted"]
[connection signal="text_submitted" from="ClientID/ClientIDLineEdit" to="." method="client_id_submitted"]

View File

@@ -0,0 +1,15 @@
class_name VSTEmoteLocation
extends RefCounted
var id : String
var start : int
var end : int
func _init(emote_id, start_idx, end_idx):
self.id = emote_id
self.start = start_idx
self.end = end_idx
static func smaller(a: VSTEmoteLocation, b: VSTEmoteLocation):
return a.start < b.start

View File

@@ -0,0 +1 @@
uid://dc4gv3t0sj482

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://crhtjoakp6j05"
path="res://.godot/imported/icon.png-952ca81aead1a8efe9432e636ee0d5ac.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://addons/very-simple-twitch/icon.png"
dest_files=["res://.godot/imported/icon.png-952ca81aead1a8efe9432e636ee0d5ac.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View File

@@ -0,0 +1,19 @@
class_name VSTChatter
var date_time_dict: Dictionary
var login: String
var channel: String
var message: String
var tags: VSTIRCTags
func is_mod() -> bool:
return tags.badges.has("moderator")
func is_sub() -> bool:
return tags.badges.has("subscriber")
func is_broadcaster() -> bool:
return tags.badges.has("broadcaster")

View File

@@ -0,0 +1 @@
uid://b5jggcdr67bax

View File

@@ -0,0 +1,13 @@
class_name VSTIRCTags
# Model for a IRC twitch chat
var color_hex: String # color of user used in twtich chat
var display_name: String # name of a user
var channel_id: String # not used
var user_id: String # numeric id of the user used in twitch
var badges: Dictionary # badges of the user in message
var emotes: Dictionary # emotes writed by user in message
func _to_string():
return "color_hex: %s, display_name: %s, channel_id: %s, user_id: %s, badges: %s, emotes: %s" % [color_hex, display_name, str(channel_id), str(user_id), badges, emotes]

View File

@@ -0,0 +1 @@
uid://dngsmhmc1s3ts

View File

@@ -0,0 +1,5 @@
class_name VSTChannel
var login: String
var id: String
var token: String

View File

@@ -0,0 +1 @@
uid://b5hhkjxmiuh35

View File

@@ -0,0 +1,198 @@
@tool
class_name VSTNetwork_Call extends Node
const CACHE_TIME_IN_SECONDS = 300
# TODO: add dynamic version here
const USER_AGENT = {"User-Agent": "VSTC/0.1.0 (Godot Engine)"}
const CACHE_PATH = "user://very-simple-chat/cache"
var url: String
var timeout: float
var body: String
var headers: Dictionary
var get_params: Dictionary
var on_call_success: Callable
var on_call_fail: Callable
var method: HTTPClient.Method
var use_cache: bool
func _init():
headers = {}
get_params = {}
timeout = 0.0
use_cache = true
func to(url_request: String) -> VSTNetwork_Call:
url = url_request
return self
func with(body_object) -> VSTNetwork_Call:
body = JSON.stringify(body_object)
return self
func in_time(timeout_request: float) -> VSTNetwork_Call:
timeout = timeout_request
return self
func verb(method_request: HTTPClient.Method) -> VSTNetwork_Call:
method = method_request
return self
func no_cache() -> VSTNetwork_Call:
use_cache = false
return self
func add_header(key_header: String, value_header: String) -> VSTNetwork_Call:
headers[key_header] = value_header
return self
func add_all_headers(headers_dic: Dictionary) -> VSTNetwork_Call:
for key in headers_dic:
headers[key] = headers_dic[key]
return self
func add_get_param(key_get_param:String, value_get_param) -> VSTNetwork_Call:
get_params[key_get_param] = str(value_get_param)
return self
func add_all_get_params(get_params_dic: Dictionary) -> VSTNetwork_Call:
for key in get_params_dic:
get_params[key] = get_params_dic[key]
return self
func set_on_call_success(on_call_success_request: Callable) -> VSTNetwork_Call:
on_call_success = on_call_success_request
return self
func set_on_call_fail(on_call_fail_request: Callable) -> VSTNetwork_Call:
on_call_fail = on_call_fail_request
return self
func _pile_headers(headers_to_pile: Dictionary) -> PackedStringArray:
var array:PackedStringArray = []
for key in headers_to_pile:
array.append("%s: %s" % [key, headers_to_pile[key]])
for key in USER_AGENT:
array.append("%s: %s" % [key, USER_AGENT[key]])
return array
func _compile_url(host: String, params_to_pile: Dictionary) -> String:
var final_url:String = host.strip_edges()+"?"
for key in params_to_pile:
var value_safe = str(params_to_pile[key]).uri_encode()
var key_safe = str(key).uri_encode()
final_url += "&%s=%s" % [key_safe, value_safe]
return final_url
func launch_request(parent: Node):
if method == HTTPClient.Method.METHOD_GET:
var final_url = _compile_url(url, get_params)
if use_cache:
var cached_data = read_from_cache(get_key_from_url(final_url))
if !cached_data.is_empty() && on_call_success != null:
on_call_success.call(cached_data)
return
_launch_network_request(parent)
func _launch_network_request(parent: Node):
var data_error = check_request_data()
if data_error != "":
var error:VSTError = VSTError.new(VSTError.VSTCodeError.PARAM_ERROR, data_error)
on_call_fail.call(error)
return
parent.add_child(self)
await get_tree().process_frame
var final_url = _compile_url(url, get_params)
var client = HTTPRequest.new()
client.timeout = timeout
client.request_completed.connect(func():
on_request_completed.bind(final_url)
client.queue_free()
)
add_child(client)
await get_tree().process_frame
var request_error = client.request(final_url, _pile_headers(headers), method, body)
if request_error != OK:
var error:VSTError = VSTError.new(VSTError.VSTCodeError.PARAM_ERROR, "The request can't be archieved reason: "+str(request_error))
on_call_fail.call(error)
client.queue_free()
return
func check_request_data() -> String:
if timeout < 0.0:
push_warning("Timeout can't be less than 0. Setted to 0")
timeout = 0
if !method:
method = HTTPClient.Method.METHOD_GET
if url == null or url.strip_edges() == "":
return "Url can't be empty"
return ""
func get_key_from_url(url:String) -> String:
var last_part_url:String = url.substr(url.rfind("/"))
return last_part_url.sha256_text()
func on_request_completed(_result: int, status: int, _headers: PackedStringArray, body: PackedByteArray, url_request: String):
if (status >= 200 and status < 400):
if method == HTTPClient.Method.METHOD_GET: update_cache(body, get_key_from_url(url_request))
if on_call_success: on_call_success.call(body)
elif (status >= 400 and status < 500):
if on_call_fail:
var info = "%s -> %s" % [str(status), body.get_string_from_utf8()]
var error:VSTError = VSTError.new(VSTError.VSTCodeError.NETWORK_ERROR, info)
on_call_fail.call(error)
elif (status >= 500):
if on_call_fail:
var info = "%s -> %s" % [str(status), body.get_string_from_utf8()]
var error:VSTError = VSTError.new(VSTError.VSTCodeError.SERVER_ERROR, info)
on_call_fail.call(error)
call_deferred("queue_free")
func read_from_cache(key:String) -> PackedByteArray:
var filename: String = CACHE_PATH.path_join(key)
if FileAccess.file_exists(filename): # is a hit on cache?
if FileAccess.get_modified_time(filename)+CACHE_TIME_IN_SECONDS > Time.get_unix_time_from_system(): # is expired?
return FileAccess.get_file_as_bytes(filename)
return []
func update_cache(content:PackedByteArray, key:String):
var filename: String = CACHE_PATH.path_join(key)
DirAccess.make_dir_recursive_absolute(filename.get_base_dir())
var file = FileAccess.open(filename, FileAccess.WRITE)
file.store_buffer(content)
file.close()
func clear_cache():
DirAccess.make_dir_recursive_absolute(CACHE_PATH)
var files:PackedStringArray = DirAccess.get_files_at(CACHE_PATH)
for file in files:
DirAccess.remove_absolute(CACHE_PATH.path_join(file))

View File

@@ -0,0 +1 @@
uid://eq8m4h87n1l5

View File

@@ -0,0 +1,74 @@
class_name VSTParseHelper
# Parse login name from payload substring of twitch irc chat
static func parse_login(input_string:String) -> String:
return get_substring(input_string, ":", "!")
# Parse channel name from payload substring of twitch irc chat
static func parse_channel(input_string:String) -> String:
return input_string.trim_prefix("#")
# Parse message from payload substring of twitch irc chat
static func parse_message(input_string:String) -> String:
return input_string.trim_prefix(":").strip_edges()
static func parse_tags(input_string:String) -> VSTIRCTags:
var irc_tags = VSTIRCTags.new()
var tags:PackedStringArray = input_string.split(";")
for i in len(tags):
var splitted_tag:PackedStringArray = tags[i].split("=")
if splitted_tag.size() <= 1: continue
match(splitted_tag[0].strip_edges()):
"badges":
irc_tags.badges = parse_badges(splitted_tag[1].split(","))
"color":
irc_tags.color_hex = splitted_tag[1]
"display-name":
irc_tags.display_name = splitted_tag[1]
"emotes":
irc_tags.emotes = parse_emotes(splitted_tag[1].split("/"))
"room-id":
irc_tags.user_id = splitted_tag[1]
return irc_tags
# Parse badges from payload substring of twitch irc chat. Returns a dictionary with the badge itself
# and the position of the badge
static func parse_badges(input:PackedStringArray) -> Dictionary:
var badges: Dictionary = {}
if input.is_empty() || input[0].is_empty(): return badges
for i in len(input):
var substrings = input[i].split("/")
if len(substrings) > 1:
badges[substrings[0]] = substrings[1]
return badges
# Parse emotes from payload substring of twitch irc chat. Returns a dictionary with the emote
# itself and the position in the user message in order to replace the text with the image emote
static func parse_emotes(input:PackedStringArray) -> Dictionary:
var emotes: Dictionary = {}
if input.is_empty() || input[0].is_empty(): return emotes
for emote in input:
var substring: PackedStringArray = emote.split(":")
if len(substring) > 1:
emotes[substring[0]] = substring[1]
return emotes
static func get_substring(input_string:String, starting_char:String, ending_char:String) -> String:
var first_index = input_string.find(starting_char)
var last_index = input_string.find(ending_char)
if first_index == -1 or last_index == -1 or last_index < first_index:
return input_string
return input_string.substr(first_index + 1, last_index - first_index - 1)

View File

@@ -0,0 +1 @@
uid://ccyfmynot5j4y

View File

@@ -0,0 +1,7 @@
[plugin]
name="Very Simple Twitch"
description="Godot websocket implementation for Twitch Chat using OICD Authentication flow"
author="RothioTome & collaborators"
version="0.1.0"
script="vst.gd"

View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
</head>
<body>
<h1 id="title">Login...</h1>
<script>
(async () => {
const AUTH_URL = 'http://localhost:8090';
const hashKeyValue = location.hash.replace('#', '&').split('&');
const tokenKeyValue = hashKeyValue.find((item) => item.split('=')[0] === 'access_token');
const token = tokenKeyValue.split('=')[1];
fetch(AUTH_URL + `?token=${token}`, { method: 'POST' }).then((e) => {document.getElementById("title").innerHTML = "Everything seems to be OK. You can close this window.";} ).catch((error) => {document.getElementById("title").innerHTML = "ERROR: "+JSON.stringify(error);});
})();
</script>
</body>
</html>

View File

@@ -0,0 +1,164 @@
class_name VSTAPI
extends Node
signal token_received(TwitchChannel)
const RESPONSE_TYPE = 'token'
const TWITCH_VALIDATE_URL = "https://id.twitch.tv/oauth2/validate"
const TWITCH_BAN_URL = "https://api.twitch.tv/helix/moderation/bans"
const TWITCH_OAUTH_URL = "https://id.twitch.tv/oauth2/authorize"
const TWITCH_VIP_URL = "https://api.twitch.tv/helix/channels/vips"
const TWITCH_SETTINGS_URL = "https://api.twitch.tv/helix/chat/settings"
const TWITCH_CHATTERS_URL = "https://api.twitch.tv/helix/chat/chatters"
var auth_server: VSTAuthServer
var _scopes: PackedStringArray
var _client_id: String
var _user: VSTChannel
func initiate_twitch_auth():
_scopes = VSTSettings.get_setting(VSTSettings.settings.scopes)
_client_id = VSTSettings.get_setting(VSTSettings.settings.client_id)
var redirect_host = VSTSettings.get_setting(VSTSettings.settings.redirect_host)
var redirect_port = VSTSettings.get_setting(VSTSettings.settings.redirect_port)
var uuid = VSTSettings.get_setting(VSTSettings.settings.uuid)
if auth_server:
disconnect_api()
auth_server = VSTAuthServer.new()
add_child(auth_server)
auth_server.OnTokenReceived.connect(_on_auth_server_on_token_received)
auth_server.start_server(redirect_port)
var redirect_uri = redirect_host + str(redirect_port) + "/" + uuid
var scopes_string = "+".join(_scopes)
var url = "client_id=" + _client_id
url += "&redirect_uri=" +redirect_uri
url += "&response_type=" + RESPONSE_TYPE
url += "&scope=" + scopes_string
OS.shell_open(TWITCH_OAUTH_URL + "?" + url)
func _on_auth_server_on_token_received(token) -> void:
var validated_user = await validate_token_and_get_user_id(token)
if !(validated_user):
print('Invalid token')
_user = null
return
_user = validated_user
token_received.emit(_user)
func request_fail(status:int, error: VSTError, on_fail: Callable):
if status == 401 or status == 403:
#Unauthorized? No mi ciela
initiate_twitch_auth()
# TODO: should chain the request?
else:
push_warning(error)
on_fail.call()
func validate_token_and_get_user_id(token: String):
var client = HTTPRequest.new()
add_child(client)
client.request(TWITCH_VALIDATE_URL, [
'Authorization: OAuth ' + token
])
var result = await client.request_completed
var status = result[1]
if status != 200:
return null
var data = (result[3] as PackedByteArray).get_string_from_utf8()
var data_parsed = JSON.parse_string(data)
var user = VSTChannel.new()
user.id = data_parsed['user_id']
user.login = data_parsed['login']
user.token = token
client.queue_free()
return user
func timeout_user(user_to_ban_id: String, duration: int = 1, reason: String = '',
on_success: Callable = Callable(), on_fail: Callable = Callable()) -> void:
if !_user:
return
var timeout_duration = max(duration, 1)
var body = {
data = {
user_id = user_to_ban_id,
duration = timeout_duration,
reason = reason
},
}
var vst = VSTNetwork_Call.new()
vst.to(TWITCH_BAN_URL)
vst.add_all_get_params({
'broadcaster_id': _user.id,
'moderator_id': _user.id
}).\
vst.with(body)
vst.verb(HTTPClient.METHOD_POST)
vst.add_all_headers({
'Client-Id: ' : _client_id,
'Authorization': 'Bearer ' + _user.token,
'Content-Type': 'application/json'
})
vst.set_on_call_success(on_success)
vst.set_on_call_fail(request_fail.bind(on_fail))
vst.launch_request(self)
func add_vip(user_to_vip_id: String, on_success: Callable = Callable(),
on_fail: Callable = Callable()):
if !_user:
return
var vst = VSTNetwork_Call.new()
vst.to(TWITCH_VIP_URL)
vst.add_all_get_params({
'broadcaster_id': _user.id,
'user_id': user_to_vip_id
})
vst.verb(HTTPClient.METHOD_POST)
vst.add_all_headers({
'Client-Id: ' : _client_id,
'Authorization': 'Bearer ' + _user.token,
'Content-Type': 'application/json'
})
vst.set_on_call_success(on_success)
vst.set_on_call_fail(request_fail.bind(on_fail))
vst.launch_request(self)
func remove_vip(user_to_remove_vip_id: String, on_success: Callable = Callable(),
on_fail: Callable = Callable()) -> void:
if !_user:
return
var vst = VSTNetwork_Call.new()
vst.to(TWITCH_VIP_URL)
vst.add_all_get_params({
'broadcaster_id': _user.id,
'user_id': user_to_remove_vip_id
})
vst.verb(HTTPClient.METHOD_DELETE)
vst.add_all_headers({
'Client-Id: ' : _client_id,
'Authorization': 'Bearer ' + _user.token,
'Content-Type': 'application/json'
})
vst.set_on_call_success(on_success)
vst.set_on_call_fail(request_fail.bind(on_fail))
vst.launch_request(self)
func disconnect_api():
if auth_server:
auth_server.stop_server()
remove_child(auth_server)

View File

@@ -0,0 +1 @@
uid://crv2n3rjn1tuf

View File

@@ -0,0 +1,285 @@
@tool
class_name VSTChat extends Node
# TODO: rename to past simple?
signal Connected(_channel)
signal OnMessage(chatter: VSTChatter)
var _channel: VSTChannel
var _chatClient: WebSocketPeer
var _hasConnected:= false
enum RequestType {
EMOTE,
BADGE,
BADGE_MAPPING
}
var caches := {
RequestType.EMOTE: {},
RequestType.BADGE: {},
RequestType.BADGE_MAPPING: {}
}
var _client_id: String
var _twitch_chat_url: String
var _twitch_chat_port: int
var _use_cache: bool
var _cache_path: String
var _use_anon_connection:= false
var _chat_queue : Array[String] = []
var _last_msg : int = Time.get_ticks_msec()
var _chat_timeout_ms: int
const USER_AGENT : String = "User-Agent: VSTC/0.1.0 (Godot Engine)"
func _process(_delta: float):
if !_chatClient:
return
_chatClient.poll()
var state = _chatClient.get_ready_state()
match state:
WebSocketPeer.STATE_OPEN:
if (!_hasConnected):
onChatConnected()
while _chatClient.get_available_packet_count():
onReceivedData(_chatClient.get_packet())
if !_chat_queue.is_empty() and _last_msg + (_last_msg + _chat_timeout_ms) <= Time.get_ticks_msec():
_chatClient.send_text(_chat_queue.pop_front())
_last_msg = Time.get_ticks_msec()
WebSocketPeer.STATE_CLOSED:
if _hasConnected:
_hasConnected = false
var code = _chatClient.get_close_code()
var reason = _chatClient.get_close_reason()
print('Disconnected from twitch chat')
print("WebSocket closed with code: %d, reason %s. Clean: %s" % [code, reason, code != -1])
print("Reconnecting")
start_chat_client()
func start_chat_client():
get_settings()
if _chatClient:
_chatClient.close()
_chatClient = WebSocketPeer.new()
_chatClient.connect_to_url("%s:%d" % [_twitch_chat_url, _twitch_chat_port])
func login_anon(channel_name: String):
_channel = VSTChannel.new()
_channel.login = channel_name.to_lower()
_use_anon_connection = true
start_chat_client()
func login(twitch_channel: VSTChannel):
_channel = twitch_channel
start_chat_client()
func onChatConnected():
if !_channel:
return
_hasConnected = true
_chatClient.send_text("CAP REQ :twitch.tv/tags twitch.tv/commands")
if _use_anon_connection:
_chatClient.send_text('PASS ' + VSTSettings.get_setting(VSTSettings.settings.twitch_anon_pass))
_chatClient.send_text('NICK ' + VSTSettings.get_setting(VSTSettings.settings.twitch_anon_user))
else:
_chatClient.send_text('PASS oauth:' + _channel.token)
_chatClient.send_text('NICK ' + _channel.login.to_lower())
pass
_chatClient.send_text('JOIN ' + '#' + _channel.login.to_lower())
Connected.emit()
func send_message(message: String):
_chat_queue.append("PRIVMSG #" + _channel.login.to_lower() + " :" + message + "\r\n")
func onReceivedData(payload: PackedByteArray):
var message = payload.get_string_from_utf8()
var splittled_messages = message.split("\n")
for n in splittled_messages:
handle_message(n)
#TODO: move this to parse helper?
func parse_message_from_twtich_IRC(message: String) -> PackedStringArray:
return message.split(" ", true, 4) # We might need more than 3
func handle_message(message: String):
if message.begins_with("PING"):
_chatClient.send_text(message.replace("PING", "PONG"))
return
var parsed_message: PackedStringArray = parse_message_from_twtich_IRC(message)
if parsed_message.size() < 2: return
match parsed_message[2]:
"NOTICE":
var info : String = parsed_message[3].right(-1)
if (info == "Login authentication failed" || info == "Login unsuccessful"):
print_debug("Authentication failed.")
#login_attempt.emit(false)
elif (info == "You don't have permission to perform that action"):
print_debug("No permission. Check if access token is still valid. Aborting.")
#user_token_invalid.emit()
set_process(false)
else:
pass
#unhandled_message.emit(message, tags)
"001":
print_debug("Authentication successful.")
_chatClient.send_text('ROOMSTATE '+ '#' + _channel.login.to_lower())
#login_attempt.emit(true)
"PRIVMSG":
handle_privmsg(parsed_message)
#handle_command(sender_data, msg[3].split(" ", true, 1))
#chat_message.emit(sender_data, msg[3].right(-1))
"ROOMSTATE":
if _use_anon_connection:
var parsed_tags:VSTIRCTags = VSTParseHelper.parse_tags(parsed_message[0])
_channel.id = parsed_tags.user_id
func parse_message_to_chatter(message: PackedStringArray) -> VSTChatter:
var chatter = VSTChatter.new()
chatter.login = VSTParseHelper.parse_login(message[1])
chatter.channel = VSTParseHelper.parse_channel(message[3])
chatter.message = VSTParseHelper.parse_message(message[4])
chatter.tags = VSTParseHelper.parse_tags(message[0])
chatter.date_time_dict = Time.get_datetime_dict_from_system()
if chatter.tags.color_hex.is_empty():
chatter.tags.color_hex = VSTUtils.get_random_name_color(chatter.login)
return chatter
func handle_privmsg(msg: PackedStringArray):
var chatter = parse_message_to_chatter(msg)
OnMessage.emit(chatter)
func get_emote(emote_id: String, scale: String = "1.0") -> Texture2D:
var texture: Texture2D
var cachename: String = emote_id + "_" + scale
var filename: String = _cache_path + "/" + RequestType.keys()[RequestType.EMOTE] + "/" + cachename + ".png"
if !caches[RequestType.EMOTE].has(cachename):
if _use_cache && FileAccess.file_exists(filename):
var img: Image = Image.new()
img.load_png_from_buffer(FileAccess.get_file_as_bytes(filename))
texture = ImageTexture.create_from_image(img)
texture.take_over_path(filename)
else:
var request: HTTPRequest = HTTPRequest.new()
add_child(request)
request.request("https://static-cdn.jtvnw.net/emoticons/v1/" + emote_id + "/" + scale, [USER_AGENT,"Accept: */*"])
var data = await(request.request_completed)
var img: Image = Image.new()
img.load_png_from_buffer(data[3])
texture = ImageTexture.create_from_image(img)
if _use_cache:
DirAccess.make_dir_recursive_absolute(filename.get_base_dir())
texture.get_image().save_png(filename)
request.queue_free()
texture.take_over_path(filename)
caches[RequestType.EMOTE][cachename] = texture
return caches[RequestType.EMOTE][cachename]
func get_badge(badge_name: String, badge_level: String, channel_id: String = "_global", scale: String = "1") -> Texture2D:
if _use_anon_connection: return
var texture: Texture2D
var cachename = badge_name + "_" + badge_level + "_" + scale
var filename: String = _cache_path + "/" + RequestType.keys()[RequestType.BADGE] + "/" + channel_id + "/" + cachename + ".png"
if !caches[RequestType.BADGE].has(channel_id):
caches[RequestType.BADGE][channel_id] = {}
if !caches[RequestType.BADGE][channel_id].has(cachename):
if _use_cache && FileAccess.file_exists(filename):
var img : Image = Image.new()
img.load_png_from_buffer(FileAccess.get_file_as_bytes(filename))
texture = ImageTexture.create_from_image(img)
texture.take_over_path(filename)
else:
var map: Dictionary = caches[RequestType.BADGE_MAPPING].get(channel_id, await(get_badge_mapping(channel_id)))
if !map.is_empty():
if map.has(badge_name):
var request: HTTPRequest = HTTPRequest.new()
add_child(request)
request.request(map[badge_name]["versions"][badge_level]["image_url_" + scale + "x"], [USER_AGENT,"Accept: */*"])
var data = await(request.request_completed)
var img: Image = Image.new()
img.load_png_from_buffer(data[3])
texture = ImageTexture.create_from_image(img)
texture.take_over_path(filename)
request.queue_free()
elif channel_id != "_global":
return await(get_badge(badge_name, badge_level, "_global", scale))
elif channel_id != "_global":
return await(get_badge(badge_name, badge_level, "_global", scale))
if _use_cache:
DirAccess.make_dir_recursive_absolute(filename.get_base_dir())
texture.get_image().save_png(filename)
texture.take_over_path(filename)
caches[RequestType.BADGE][channel_id][cachename] = texture
return caches[RequestType.BADGE][channel_id][cachename]
func get_badge_mapping(channel_id: String = "_global") -> Dictionary:
if _use_anon_connection: return {}
if caches[RequestType.BADGE_MAPPING].has(channel_id):
return caches[RequestType.BADGE_MAPPING][channel_id]
var filename: String = _cache_path + "/" + RequestType.keys()[RequestType.BADGE_MAPPING] + "/" + channel_id + ".json"
if _use_cache && FileAccess.file_exists(filename):
var cache = JSON.parse_string(FileAccess.get_file_as_string(filename))
if "badge_sets" in cache:
return cache["badge_sets"]
var request : HTTPRequest = HTTPRequest.new()
add_child(request)
request.request("https://api.twitch.tv/helix/chat/badges" + ("/global" if channel_id == "_global" else "?broadcaster_id=" + _channel.id), [USER_AGENT, "Authorization: Bearer " + _channel.token, "Client-Id:" + _client_id, "Content-Type: application/json"], HTTPClient.METHOD_GET)
var reply : Array = await(request.request_completed)
var response : Dictionary = JSON.parse_string(reply[3].get_string_from_utf8())
var mappings : Dictionary = {}
for entry in response["data"]:
if (!mappings.has(entry["set_id"])):
mappings[entry["set_id"]] = {"versions": {}}
for version in entry["versions"]:
mappings[entry["set_id"]]["versions"][version["id"]] = version
request.queue_free()
if (reply[1] == HTTPClient.RESPONSE_OK):
caches[RequestType.BADGE_MAPPING][channel_id] = mappings
if _use_cache:
DirAccess.make_dir_recursive_absolute(filename.get_base_dir())
var file : FileAccess = FileAccess.open(filename, FileAccess.WRITE)
file.store_string(JSON.stringify(mappings))
else:
print("Could not retrieve badge mapping for channel_id " + channel_id + ".")
return {}
return caches[RequestType.BADGE_MAPPING][channel_id]
func get_settings():
_client_id = VSTSettings.get_setting(VSTSettings.settings.client_id)
_twitch_chat_url = VSTSettings.get_setting(VSTSettings.settings.twitch_chat_url)
_twitch_chat_port = VSTSettings.get_setting(VSTSettings.settings.twitch_port)
_use_cache = VSTSettings.get_setting(VSTSettings.settings.disk_cache)
_cache_path = VSTSettings.get_setting(VSTSettings.settings.disk_cache_path)
_chat_timeout_ms = VSTSettings.get_setting(VSTSettings.settings.twitch_timeout_ms)
# stops chat socket from tts server
func disconnect_api():
if _chatClient:
_chatClient.close()
_hasConnected = false

View File

@@ -0,0 +1 @@
uid://ckwhjsorarfn0

View File

@@ -0,0 +1,124 @@
class_name VSTSettings
const settings: Dictionary = {
"client_id": {
"path": "config/client_id",
"type": TYPE_STRING,
"hint_string": "The client id from the twitch developer dashboard",
"is_basic": true,
"initial_value": "",
},
"redirect_host": {
"path": "advanced_config/redirect_host",
"type": TYPE_STRING,
"hint_string": "The host where the OAuth Callback will be received",
"is_basic": false,
"initial_value": "http://localhost:",
},
"uuid": {
"path": "advanced_config/uuid",
"type": TYPE_STRING,
"hint_string": "The useless UID to hide the token from the web browser",
"is_basic": false,
"initial_value": "53125396-3e32-4fad-8f7e-36475724168b-a8fe83ab-3373-4a6a-8967-2532eafe407f-41483db3-f011-4a23-80da-9a340672692a-e755c6d4-c546-43ce-b722-b5a799561b4e-5ba1697d-79b2-4d5d-96c3-f0d91f13f583-f08f18f9-bd56-4a0f-a597-96f90108cd85-14449d50-6cc9-450f-8119-ff4c525e31db-e41a6912-92a0-48b6-b6d3-845c21bea7eb-7dfd7948-2976-42cf-9cca-b23ae5854813-107224eb-81ea-46dd-9bf5-9ebbfcfc45dc/",
},
"redirect_port": {
"path": "config/redirect_port",
"type": TYPE_INT,
"hint_string": "The port where the oauth callback will be redirect",
"is_basic": true,
"initial_value": 8090,
},
"disk_cache_path": {
"path": "advanced_config/disk_cache_path",
"type": TYPE_STRING,
"hint": PROPERTY_HINT_GLOBAL_DIR,
"hint_string": "The absolute filepath where the images cache will be stored",
"is_basic": false,
"initial_value": "user://very-simple-chat/cache",
},
"disk_cache": {
"path": "config/disk_cache",
"type": TYPE_BOOL,
"hint_string": "Use cache to store the images from badges and emotes",
"is_basic": true,
"initial_value": true,
},
"scopes": {
"path": "config/scopes",
"type": TYPE_PACKED_STRING_ARRAY,
"hint_string": "Scopes that will be asked when the token is retrieved",
"is_basic": true,
"initial_value": ["moderator:manage:banned_users","chat:read", "channel:manage:vips"],
},
"twitch_chat_url": {
"path": "advanced_config/twitch_chat_url",
"type": TYPE_STRING,
"hint_string": "Twitch chat url",
"is_basic": false,
"initial_value": "wss://irc-ws.chat.twitch.tv",
},
"twitch_port": {
"path": "advanced_config/twitch_port",
"type": TYPE_INT,
"hint_string": "The port the websocket will connect to",
"is_basic": false,
"initial_value": 443,
},
"twitch_anon_user": {
"path": "advanced_config/twitch_anon_user",
"type": TYPE_STRING,
"hint_string": "Anon connection username",
"is_basic": false,
"initial_value": "justinfan5555",
},
"twitch_anon_pass": {
"path": "advanced_config/twitch_anon_pass",
"type": TYPE_STRING,
"hint_string": "Anon connection password",
"is_basic": false,
"initial_value": "kappa",
},
"twitch_timeout_ms":{
"path": "advanced_config/twitch_timeout_ms",
"type:": TYPE_INT,
"hint_string": "Time between messages sent by the client",
"is_basic": false,
"initial_value": 320,
}
}
static func add_settings():
for setting in settings:
var setting_value = settings[setting]
var path = "very_simple_twitch/"+ setting_value.get("path", "config" +setting)
var saved_value = ProjectSettings.get_setting(path)
if !saved_value:
ProjectSettings.set_setting(path, setting_value.get("initial_value"))
var property_info = {
"name": path,
"type": setting_value.get("type", typeof(setting_value.get("initial_value"))),
"hint": setting_value.get("hint"),
"hint_string": setting_value.get("hint_string", "")
}
ProjectSettings.set_as_basic(path, setting_value.get("is_basic", true))
ProjectSettings.set_initial_value(path, setting_value.get("initial_value"))
ProjectSettings.add_property_info(property_info)
ProjectSettings.save()
static func remove_settings():
for setting in settings:
var setting_value = settings[setting]
var path = "very_simple_twitch/"+ setting_value.get("path", "config") + "/" + setting
ProjectSettings.set_setting(path, null)
static func get_setting(setting: Dictionary):
var path = "very_simple_twitch/"+ setting.get("path")
var response = ProjectSettings.get_setting(path)
if !response:
return setting.get("initial_value")
else:
return response

View File

@@ -0,0 +1 @@
uid://7erhidjoher1

View File

@@ -0,0 +1,71 @@
extends Node
signal token_received(twitch_channel: VSTChannel)
signal chat_message_received(channel: VSTChatter)
signal chat_connected(channel_name: String)
var _twitch_api: VSTAPI
var _twitch_chat: VSTChat
func login_chat_anon(channel_name: String):
_start_chat_client()
_twitch_chat.login_anon(channel_name)
chat_connected.emit(await _twitch_chat.Connected)
func login_chat(channel_info: VSTChannel):
_start_chat_client()
_twitch_chat.login(channel_info)
chat_connected.emit(await _twitch_chat.Connected)
func get_token_and_login_chat():
var channel_info = await get_token()
await login_chat(channel_info)
func _start_chat_client():
if !_twitch_chat:
_twitch_chat = VSTChat.new()
add_child(_twitch_chat)
_twitch_chat.OnMessage.connect(on_chat_message_received)
func get_token() -> VSTChannel:
if !_twitch_api:
_twitch_api = VSTAPI.new()
add_child(_twitch_api)
_twitch_api.initiate_twitch_auth()
var channel_info = await _twitch_api.token_received
token_received.emit(channel_info)
return channel_info
func get_badge(badge_name: String, badge_level: String,
channel_id: String = "_global", scale: String = "1"):
return await _twitch_chat.get_badge(badge_name, badge_level, channel_id, scale)
func get_emote(loc_id: String):
return await _twitch_chat.get_emote(loc_id)
# clear all support nodes, disconects from chat/auth server
func end_chat_client():
if _twitch_chat:
_twitch_chat.disconnect_api()
_twitch_chat.OnMessage.disconnect(on_chat_message_received)
remove_child(_twitch_chat)
_twitch_chat.queue_free()
_twitch_chat = null
if _twitch_api:
_twitch_api.disconnect_api()
remove_child(_twitch_api)
_twitch_api.queue_free()
_twitch_api = null
func send_chat_message(message: String):
_twitch_chat.send_message(message)
func on_chat_message_received(chatter: VSTChatter):
chat_message_received.emit(chatter)

View File

@@ -0,0 +1 @@
uid://cbrqfun2syqju

View File

@@ -0,0 +1,40 @@
class_name VSTUtils
const LUMINANCE_LOW := 0.2
const LUMINANCE_HIGH := 0.8
const DEFAULT_NAME_COLORS:Array[String] = [
"#FF0000",
"#00FF00",
"#0000FF",
"#B22222",
"#FF7F50",
"#9ACD32",
"#FF4500",
"#2E8B57",
"#DAA520",
"#D2691E",
"#5F9EA0",
"#1E90FF",
"#FF69B4",
"#8A2BE2",
"#00FF7F",
]
# Returns a random non-unique color from a name and a seed
static func get_random_name_color(login: String, session_seed:int = 0):
var position: int = session_seed + hash(login)
return DEFAULT_NAME_COLORS[position % DEFAULT_NAME_COLORS.size()]
# Normalize color in order to be not bright or darker
static func normalize_color(color: Color) -> Color:
var luminance = color.get_luminance()
if luminance > LUMINANCE_HIGH:
return color.darkened(0.2)
if luminance < LUMINANCE_LOW:
return color.lightened(0.2)
return color
# Normalize color from string representation
static func normalize_hex_color(color: String) -> Color:
return normalize_color(Color(color))

View File

@@ -0,0 +1 @@
uid://pqa2k4i3du34

View File

@@ -0,0 +1,36 @@
@tool
extends EditorPlugin
var dock
var chat_dock
func _enter_tree() -> void:
add_custom_type("VerySimpleTwitchChat", "Node", preload("twitch_chat.gd"), preload("icon.png"))
add_custom_type("VerySimpleTwitchAPI", "Node", preload("twitch_api.gd"), preload("icon.png"))
add_autoload_singleton("VerySimpleTwitch", "twitch_node.gd")
VSTSettings.add_settings()
#Bottom setup dock
dock = preload("res://addons/very-simple-twitch/dock/vst-dock.tscn").instantiate()
add_control_to_bottom_panel(dock, "Very Simple Twitch")
#Chat dock
chat_dock = preload("res://addons/very-simple-twitch/chat/vst_chat_dock.tscn").instantiate()
add_control_to_dock(EditorPlugin.DOCK_SLOT_RIGHT_UL, chat_dock)
func _exit_tree() -> void:
remove_custom_type("VerySimpleTwitchChat")
remove_custom_type("VerySimpleTwitchAPI")
VSTSettings.remove_settings()
remove_autoload_singleton("VerySimpleTwitch")
remove_control_from_bottom_panel(dock)
dock.free()
remove_control_from_docks(chat_dock)
chat_dock.free()

View File

@@ -0,0 +1 @@
uid://cd4wocpij063j

View File

@@ -0,0 +1,32 @@
class_name VSTError
enum VSTCodeError {PARAM_ERROR, TIMEOUT_ERROR, NETWORK_ERROR, SERVER_ERROR}
var code: VSTCodeError
var description: String
var info: String
func _init(error_code: VSTCodeError, error_info: String = ""):
code = error_code
info = error_info
description = _get_description_from_code(error_code)
func _get_description_from_code(error_code: VSTCodeError) -> String:
var result = ""
match (error_code):
VSTCodeError.PARAM_ERROR:
result = "The request aren't fullfilled properly. Check the data"
VSTCodeError.NETWORK_ERROR:
result = "The request result in an error"
VSTCodeError.SERVER_ERROR:
result = "There is an error in server"
VSTCodeError.TIMEOUT_ERROR:
result = "The server doesn't response"
_:
result = "Unknown error"
return result
func _to_string():
return "%s %s %s" % [str(code), description, info]

View File

@@ -0,0 +1 @@
uid://bcle5hp6f77l

View File

@@ -10,6 +10,7 @@ signal sound_changed(settings : SettingsData)
signal video_changed(settings : SettingsData)
signal game_changed(settings : SettingsData)
signal fov_changed(value : float)
signal twitch_changed(settings : SettingsData)
#region ------------------ Language ------------------
@@ -97,4 +98,16 @@ func close_help_container(help_container_name : String):
func open_help_container(help_container_name : String):
if help_container_name in closed_help_containers:
closed_help_containers.erase(help_container_name)
game_changed.emit(self)
game_changed.emit(self)
#region ------------------ Twitch ------------------
@export var activate_twitch_integration := false :
set(v):
activate_twitch_integration = v
twitch_changed.emit(self)
@export var twitch_channel := "" :
set(v):
twitch_channel = v
twitch_changed.emit(self)

View File

@@ -1,10 +1,9 @@
extends Node
const SAVE_GAME_LOCATION = "user://stw_demo_save.tres"
const SAVE_GAME_LOCATION = "user://stw_playtest_2_save.tres"
const SAVE_SETTINGS_LOCATION = "user://stw_settings.tres"
var game_loaded = false
signal game_loaded
signal game_data_updated(g : GameData)
var game_data : GameData :
@@ -20,6 +19,7 @@ func load_game_data() -> GameData:
game_data = null
if ResourceLoader.exists(SAVE_GAME_LOCATION) and ResourceLoader.load(SAVE_GAME_LOCATION):
game_data = ResourceLoader.load(SAVE_GAME_LOCATION).duplicate_deep()
game_loaded.emit()
return game_data

View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-brand-twitch"
version="1.1"
id="svg4"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs4" />
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
id="path1" />
<path
d="M4 5v11a1 1 0 0 0 1 1h2v4l4 -4h5.584c.266 0 .52 -.105 .707 -.293l2.415 -2.414c.187 -.188 .293 -.442 .293 -.708v-8.585a1 1 0 0 0 -1 -1h-14a1 1 0 0 0 -1 1l.001 0"
id="path2"
style="stroke:#ffffff;stroke-opacity:1" />
<path
d="M16 8l0 4"
id="path3"
style="stroke:#ffffff;stroke-opacity:1" />
<path
d="M12 8l0 4"
id="path4"
style="stroke:#ffffff;stroke-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 953 B

View File

@@ -0,0 +1,43 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cvvnrj8wi3f3r"
path="res://.godot/imported/brand-twitch.svg-a028bcfb5c21b506b9222ac521f85c82.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://common/icons/brand-twitch.svg"
dest_files=["res://.godot/imported/brand-twitch.svg-a028bcfb5c21b506b9222ac521f85c82.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=2.0
editor/scale_with_editor_scale=false
editor/convert_colors_with_editor_theme=false

View File

@@ -8,6 +8,13 @@ const CONSONANTS = ["b", "c", "d", "f", "g", "h", "j", "k", "l", "m", "n", "p",
static func generate_random_word(_random_seed = randi()) -> String:
if (
GameInfo
and GameInfo.settings_data.activate_twitch_integration
and len(TwitchConnection.pseudo_gathered)
):
return TwitchConnection.pseudo_gathered.pick_random()
var word_len = randf_range(4,8)
var word = ''
var last_letter_is_vowel = false

View File

@@ -0,0 +1,24 @@
extends Node
signal pseudo_gathered_updated(pseudos)
var pseudo_gathered : Array[String] = []
func _ready():
VerySimpleTwitch.chat_message_received.connect(_on_message_received)
GameInfo.settings_data.twitch_changed.connect(connect_to_twitch)
func connect_to_twitch(settings : SettingsData):
pseudo_gathered = []
pseudo_gathered_updated.emit(pseudo_gathered)
VerySimpleTwitch.end_chat_client()
if settings.activate_twitch_integration:
connect_to_twitch_account(settings.twitch_channel)
func connect_to_twitch_account(channel_name: String):
VerySimpleTwitch.login_chat_anon(channel_name)
func _on_message_received(chatter: VSTChatter):
if not chatter.login in pseudo_gathered:
pseudo_gathered.append(chatter.login)
pseudo_gathered_updated.emit(pseudo_gathered)

View File

@@ -0,0 +1 @@
uid://fm17qbe4kqqo

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 MiB

After

Width:  |  Height:  |  Size: 8.4 MiB

View File

@@ -4,12 +4,12 @@
[ext_resource type="Script" uid="uid://c360ic1aost1n" path="res://entities/plants/scripts/texture_builder/plant_part_builder.gd" id="2_a5yje"]
[ext_resource type="Script" path="res://entities/plants/scripts/texture_builder/plant_attach_builder.gd" id="3_yh7e0"]
[sub_resource type="AtlasTexture" id="AtlasTexture_yh7e0"]
[sub_resource type="AtlasTexture" id="AtlasTexture_khbsd"]
atlas = ExtResource("1_yh7e0")
region = Rect2(1914, 1843, 213, 199)
[node name="Sprite" type="Sprite2D" unique_id=1642167049 node_paths=PackedStringArray("root", "attaches")]
texture = SubResource("AtlasTexture_yh7e0")
texture = SubResource("AtlasTexture_khbsd")
script = ExtResource("2_a5yje")
part_name = "LeafE9"
type = 2

View File

@@ -123,8 +123,13 @@ func calculate_plant_score(
return data.get_score(with_state)
func harvest():
for i in range(data.get_seed_number()):
await produce_seed()
var do_produce_seeds := true
for m in data.mutations:
do_produce_seeds = do_produce_seeds && m.produce_seeds()
if do_produce_seeds:
for i in range(data.get_seed_number()):
await produce_seed()
if data.get_state() == PlantData.State.MATURE:
for m in data.mutations:
@@ -151,8 +156,15 @@ func mature():
func die():
for m in data.mutations:
m._start_dead_effect(self)
for i in range(data.get_seed_number()):
await produce_seed()
var do_produce_seeds := true
for m in data.mutations:
do_produce_seeds = do_produce_seeds && m.produce_seeds_on_maturation()
if do_produce_seeds:
for i in range(data.get_seed_number()):
await produce_seed()
AudioManager.play_sfx("Harvest")
disappear()

View File

@@ -28,6 +28,9 @@ func get_mutation_name() -> String:
func mutate_plant_data(_plant_data: PlantData):
pass
func has_score(_plant_data: PlantData) -> bool:
return true
func mutate_score(_plant_data: PlantData, score: int) -> int:
return score
@@ -40,6 +43,9 @@ func mutate_lifetime(_plant_data: PlantData, lifetime: int) -> int:
func mutate_growing_time(_plant_data: PlantData, growing_time: int) -> int:
return growing_time
func produce_seeds() -> bool:
return true
func mutate_seed_number(_plant_data: PlantData, seed_number: int) -> int:
return seed_number

View File

@@ -0,0 +1,25 @@
extends PlantMutation
class_name CleaningMutation
func get_icon() -> Texture:
return preload("res://common/icons/alert-triangle.svg")
func get_mutation_id() -> String:
return "CLEANING"
func get_mutation_name() -> String:
return tr("CLEANING")
func get_mutation_description() -> String:
return tr("CLEANING_EFFECT_TEXT").format({
"purification_radius": get_purification_radius()
})
func _start_dead_effect(plant: Plant):
plant.region.decontaminate(Math.get_tiles_in_circle(
plant.global_position,
get_purification_radius() * (Region.TILE_SIZE + Region.TILE_SIZE / 2.)
))
func get_purification_radius() -> int:
return level + 1 # one more than purification

View File

@@ -0,0 +1 @@
uid://coh8clft5bs1j

View File

@@ -0,0 +1,29 @@
extends PlantMutation
class_name CuttingMutation
func get_icon() -> Texture:
return preload("res://common/icons/alert-triangle.svg")
func get_base_rarity() -> int:
return 1
func get_mutation_id() -> String:
return "CUTTING"
func get_mutation_name() -> String:
return tr("CUTTING")
func get_mutation_description() -> String:
return tr("CUTTING_EFFECT_TEXT").format({
"cutable_per_day": get_cutable_per_day()
})
func _start_day_effect(plant: Plant):
var cut_left := get_cutable_per_day()
for p in plant.data.nearby_plants:
if cut_left > 0 && p.is_mature():
p.harvest()
cut_left -= 1
func get_cutable_per_day() -> int:
return level

View File

@@ -0,0 +1 @@
uid://j2f1ogpead8d

View File

@@ -0,0 +1,25 @@
extends PlantMutation
class_name EnergizingMutation
func get_icon() -> Texture:
return preload("res://common/icons/alert-triangle.svg")
func get_base_rarity() -> int:
return 1
func get_mutation_id() -> String:
return "ENERGIZING"
func get_mutation_name() -> String:
return tr("ENERGIZING")
func get_mutation_description() -> String:
return tr("ENERGIZING_EFFECT_TEXT").format({
"bonus_energy": get_bonus_energy()
})
func _start_dead_effect(plant: Plant):
plant.region.player.data.energy += get_bonus_energy()
func get_bonus_energy() -> int:
return level

View File

@@ -0,0 +1 @@
uid://byj1hq1w42i7

View File

@@ -0,0 +1,27 @@
extends PlantMutation
class_name ErmitMutation
func get_icon() -> Texture:
return preload("res://common/icons/alert-triangle.svg")
func get_mutation_id() -> String:
return "ERMIT"
func get_mutation_name() -> String:
return tr("ERMIT")
func get_mutation_description() -> String:
return tr("ERMIT_EFFECT_TEXT").format(
{
"score_increase": get_score_increase(),
}
)
func has_score(plant_data: PlantData) -> bool:
return false if plant_data.nearby_plants.size() > 0 else true
func mutate_score(plant_data: PlantData, score: int) -> int:
return score + get_score_increase() if plant_data.nearby_plants.size() == 0 else 0
func get_score_increase():
return 2 * level

View File

@@ -0,0 +1 @@
uid://5pfa2y03wvlt

View File

@@ -0,0 +1,31 @@
extends PlantMutation
class_name SolarMutation
func get_icon() -> Texture:
return preload("res://common/icons/alert-triangle.svg")
func get_base_rarity() -> int:
return 1
func get_mutation_id() -> String:
return "SOLAR"
func get_mutation_name() -> String:
return tr("SOLAR")
func get_mutation_description() -> String:
return tr("SOLAR_EFFECT_TEXT").format({
"bonus_chance": get_bonus_chance(),
"bonus_energy": get_bonus_energy()
})
func _start_day_effect(plant: Plant):
var rng := RandomNumberGenerator.new()
if rng.randf() < get_bonus_chance():
plant.region.player.data.energy += get_bonus_energy()
func get_bonus_chance() -> float:
return 1 / (6 - min(level, 5))
func get_bonus_energy() -> int:
return 1

View File

@@ -0,0 +1 @@
uid://bhmlq1ke803rc

View File

@@ -0,0 +1,32 @@
extends PlantMutation
class_name SpontaneousMutation
func get_icon() -> Texture:
return preload("res://common/icons/droplet.svg")
func get_base_rarity() -> int:
return 1
func get_mutation_id() -> String:
return "SPONTANEOUS"
func get_mutation_name() -> String:
return tr("SPONTANEOUS")
func get_mutation_description() -> String:
return tr("SPONTANEOUS_EFFECT_TEXT").format({
"bonus_seed": get_bonus_seed()
})
func produce_seeds() -> bool:
return false
func mutate_seed_number(_plant_data: PlantData, seed_number: int) -> int:
return seed_number + get_bonus_seed()
func _start_maturation_effect(plant: Plant):
for i in range(plant.data.get_seed_number()):
await plant.produce_seed()
func get_bonus_seed() -> int:
return level - 1

View File

@@ -0,0 +1 @@
uid://cvrw2rf8p82rd

View File

@@ -12,6 +12,8 @@ func _ready():
setup_sound()
setup_video()
setup_controls()
setup_twitch()
update_twitch_pseudo()
show()
%SettingsWindow.hide()
%SettingsWindow.closed.connect(
@@ -19,10 +21,17 @@ func _ready():
GameInfo.save_settings()
)
TwitchConnection.pseudo_gathered_updated.connect(
func (_p):update_twitch_pseudo()
)
func open_settings():
setup_languages()
setup_sound()
setup_video()
setup_controls()
setup_twitch()
update_twitch_pseudo()
show()
%SettingsWindow.open_window()
@@ -51,6 +60,17 @@ func setup_controls():
%FovSlider.value = settings.fov
%SensibilitySlider.value = settings.mouse_sensivity
func setup_twitch():
%TwitchActivationCheckBox.button_pressed = settings.activate_twitch_integration
%TwitchChannelLineEdit.text = settings.twitch_channel
func update_twitch_pseudo():
if GameInfo.settings_data.activate_twitch_integration:
%TwitchPseudoCount.text = tr("PSEUDO_GATHERED_%d") % len(TwitchConnection.pseudo_gathered)
else:
%TwitchPseudoCount.text = "TWITCH_NOT_CONNECTED"
func _on_language_option_button_item_selected(index: int):
settings.language = SettingsData.AVAILABLE_LANGUAGES[index]
@@ -85,3 +105,10 @@ func _on_sensibility_slider_value_changed(value: float):
func _on_ui_size_slider_value_changed(value: float):
settings.ui_size = %UiSizeSlider.value
func _on_twitch_activation_check_box_toggled(toggled_on: bool):
settings.activate_twitch_integration = toggled_on
func _on_twitch_channel_line_edit_editing_toggled(toggled_on: bool):
if not toggled_on:
settings.twitch_channel = %TwitchChannelLineEdit.text

View File

@@ -7,9 +7,8 @@
[ext_resource type="PackedScene" uid="uid://d3agt2njfgddb" path="res://gui/menu/window/content_label.tscn" id="4_rbiwc"]
[ext_resource type="AudioStream" uid="uid://8juy5ev3rdfh" path="res://common/audio_manager/assets/sfx/plant_points/plant_point_1.wav" id="6_8f00b"]
[node name="Settings" type="Control" unique_id=1832300574]
[node name="Settings" type="MarginContainer" unique_id=1374154672]
process_mode = 3
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
@@ -17,16 +16,19 @@ grow_horizontal = 2
grow_vertical = 2
size_flags_horizontal = 3
size_flags_vertical = 3
mouse_filter = 1
theme_override_constants/margin_left = 100
theme_override_constants/margin_top = 100
theme_override_constants/margin_right = 100
theme_override_constants/margin_bottom = 100
script = ExtResource("1_7t8mv")
[node name="SettingsWindow" parent="." unique_id=798514856 instance=ExtResource("1_gkn1k")]
unique_name_in_owner = true
process_mode = 3
custom_minimum_size = Vector2(900, 667.77)
layout_mode = 1
offset_left = -349.99994
offset_right = 350.00055
visible = false
custom_minimum_size = Vector2(800, 0)
layout_mode = 2
size_flags_vertical = 1
mouse_filter = 0
title = "SETTINGS"
@@ -144,7 +146,7 @@ size_flags_horizontal = 3
size_flags_vertical = 3
theme = ExtResource("2_7t8mv")
min_value = 0.5
max_value = 1.5
max_value = 2.5
step = 0.01
value = 1.5
@@ -198,6 +200,45 @@ size_flags_horizontal = 10
size_flags_vertical = 4
theme = ExtResource("2_7t8mv")
[node name="TwitchIntegrationTitle" parent="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent" unique_id=1569982523 instance=ExtResource("3_rbiwc")]
layout_mode = 2
title = "TWITCH_INTEGRATION"
[node name="GridContainer" type="GridContainer" parent="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent" unique_id=522476269]
layout_mode = 2
columns = 2
[node name="TwitchActivation" parent="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent/GridContainer" unique_id=845492722 instance=ExtResource("4_rbiwc")]
layout_mode = 2
size_flags_horizontal = 3
text = "ACTIVATE_TWITCH_INTERACTION"
[node name="TwitchActivationCheckBox" type="CheckBox" parent="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent/GridContainer" unique_id=41914098]
unique_name_in_owner = true
layout_mode = 2
size_flags_horizontal = 10
size_flags_vertical = 4
theme = ExtResource("2_7t8mv")
[node name="TwitchChannel" parent="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent/GridContainer" unique_id=761410855 instance=ExtResource("4_rbiwc")]
layout_mode = 2
size_flags_horizontal = 3
text = "TWITCH_CHANNEL"
[node name="TwitchChannelLineEdit" type="LineEdit" parent="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent/GridContainer" unique_id=1533093934]
unique_name_in_owner = true
layout_mode = 2
size_flags_horizontal = 3
[node name="TwitchPseudoCount" parent="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent" unique_id=1953595699 instance=ExtResource("4_rbiwc")]
unique_name_in_owner = true
modulate = Color(1, 1, 1, 0.5882353)
layout_mode = 2
size_flags_horizontal = 3
text = "PSEUDO_GATHERED "
horizontal_alignment = 1
vertical_alignment = 1
[node name="MusicTestPlayer" type="AudioStreamPlayer" parent="." unique_id=1716804039]
unique_name_in_owner = true
stream = ExtResource("6_8f00b")
@@ -222,5 +263,7 @@ bus = &"Sfx"
[connection signal="value_changed" from="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent/VideoSettings/FovSlider" to="." method="_on_fov_slider_value_changed"]
[connection signal="value_changed" from="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent/GameSettings/SensibilitySlider" to="." method="_on_sensibility_slider_value_changed"]
[connection signal="toggled" from="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent/GameSettings/AutoPickupCheckBox" to="." method="_on_auto_pickup_check_box_toggled"]
[connection signal="toggled" from="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent/GridContainer/TwitchActivationCheckBox" to="." method="_on_twitch_activation_check_box_toggled"]
[connection signal="editing_toggled" from="SettingsWindow/WindowContent/MarginContainer/ContentContainer/MarginContainer/SettingsContent/GridContainer/TwitchChannelLineEdit" to="." method="_on_twitch_channel_line_edit_editing_toggled"]
[editable path="SettingsWindow"]

View File

@@ -21,11 +21,15 @@ func _on_close_button_pressed():
func open_window():
show()
%ControlAnimationPlayer.appear()
modulate.a = 0.
var tween = create_tween()
tween.tween_property(self, 'modulate:a', 1, 0.3)
func close_window():
if visible:
%ControlAnimationPlayer.disappear(0.3)
await get_tree().create_timer(0.3).timeout
modulate.a = 1.
var tween = create_tween()
tween.tween_property(self, 'modulate:a', 0, 0.3)
await tween.finished
hide()
closed.emit()

View File

@@ -16,7 +16,7 @@ compatibility/default_parent_skeleton_in_mesh_instance_3d=true
config/name="Seeding The Wasteland"
config/description="Seeding planets is a survival, managment and cosy game in which you play a little gardener robot."
config/version="demo-1.3"
config/version="beta-2.0"
run/main_scene="uid://c5bruelvqbm1k"
config/features=PackedStringArray("4.7", "Forward Plus")
config/icon="uid://df0y0s666ui4h"
@@ -36,6 +36,8 @@ LoadingScreen="*res://gui/loading_screen/loading_screen.tscn"
SceneManager="*res://common/scene_manager/scene_manager.tscn"
SteamConnection="*uid://bq12bubjof2mo"
GameInfo="*res://common/game_info/game_info.gd"
VerySimpleTwitch="*uid://cbrqfun2syqju"
TwitchConnection="*uid://fm17qbe4kqqo"
[dialogic]
@@ -122,7 +124,7 @@ translation/intern/translation_folder="res://translation/dialogs"
[editor_plugins]
enabled=PackedStringArray("res://addons/dialogic/plugin.cfg")
enabled=PackedStringArray("res://addons/dialogic/plugin.cfg", "res://addons/very-simple-twitch/plugin.cfg")
[input]
@@ -257,7 +259,17 @@ environment/defaults/default_clear_color=Color(0.0617213, 0.0605653, 0.169189, 1
[steam]
initialization/app_id=4690960
initialization/app_id=4452760
initialization/initialize_on_startup=true
initialization/embed_callbacks=true
multiplayer_peer/max_channels=4
[twitcher]
editor/game_oauth_token="res://common/twitch_connection/twitch_oauth_token.tres"
editor/game_oauth_setting="res://common/twitch_connection/twitch_oauth_setting.tres"
editor/resource_folder="res://common/twitch_connection"
[very_simple_twitch]
config/client_id="xg0yviwuskvnw1y6s6h5cmvalyfteb"

View File

@@ -16,15 +16,15 @@ func _ready():
%Version.text = ProjectSettings.get_setting("application/config/version")
%Start.text = tr("CONTINUE") if GameInfo.game_data else tr("START")
%Restart.visible = GameInfo.game_data != null
if GameInfo.game_data:
%Planet3d.fertility_factor = (
max(0,float(GameInfo.game_data.progression_data.story_step_i - 1))
/ len(
GameInfo.game_data.progression_data.get_all_story_steps()
) - 1
)
%Settings.close_settings()
%Controls.close_controls()
if not GameInfo.game_data:
GameInfo.game_loaded.connect(
func ():
decontaminate_3D_planet(GameInfo.game_data)
)
else :
decontaminate_3D_planet(GameInfo.game_data)
func _on_start_pressed():
if GameInfo.game_data :
@@ -36,6 +36,14 @@ func _on_start_pressed():
GameInfo.start_game_data()
SceneManager.change_to_scene(IntroScene.new())
func decontaminate_3D_planet(game_data):
%Planet3d.fertility_factor = (
max(0,float(GameInfo.game_data.progression_data.story_step_i))
/ len(
GameInfo.game_data.progression_data.get_all_story_steps()
)
)
func _process(delta):
next_mouse_pos = get_viewport().get_mouse_position()
if Input.is_action_just_pressed("action"):

View File

@@ -3,7 +3,9 @@
[ext_resource type="Theme" uid="uid://bgcmd213j6gk1" path="res://gui/ressources/hud.tres" id="1_4ph5l"]
[ext_resource type="Script" uid="uid://cwmp2une7hobe" path="res://stages/title_screen/scripts/title_screen.gd" id="1_6yuhi"]
[ext_resource type="Texture2D" uid="uid://dcgnamu7sb3ov" path="res://common/icons/bolt.svg" id="3_6yuhi"]
[ext_resource type="Texture2D" uid="uid://3813d8ld7vt2" path="res://stages/title_screen/assets/textures/Logo-demo.png" id="3_lwj2x"]
[ext_resource type="Texture2D" uid="uid://cdpqg3pkjcw2h" path="res://stages/title_screen/assets/textures/title.png" id="3_lwj2x"]
[ext_resource type="Texture2D" uid="uid://cvvnrj8wi3f3r" path="res://common/icons/brand-twitch.svg" id="3_gn4uv"]
[ext_resource type="FontFile" uid="uid://qt80w6o01q5s" path="res://gui/ressources/fonts/TitanOne-Regular.ttf" id="4_ofiho"]
[ext_resource type="Texture2D" uid="uid://bewr0t1wi8pff" path="res://common/icons/rotate.svg" id="5_6yuhi"]
[ext_resource type="PackedScene" uid="uid://cm5b7w7j6527f" path="res://stages/title_screen/planet_3d.tscn" id="5_7a1qq"]
[ext_resource type="Texture2D" uid="uid://cixd5j8yqpavg" path="res://common/icons/settings.svg" id="6_3aitq"]
@@ -23,6 +25,47 @@
[sub_resource type="ViewportTexture" id="ViewportTexture_6yuhi"]
viewport_path = NodePath("SubViewport")
[sub_resource type="LabelSettings" id="LabelSettings_1xafb"]
font = ExtResource("4_ofiho")
font_size = 18
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_g4v7s"]
[sub_resource type="Animation" id="Animation_5icsl"]
length = 0.001
tracks/0/type = "bezier"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath("HSeparator:theme_override_constants/separation")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"handle_modes": PackedInt32Array(0),
"points": PackedFloat32Array(0, -0.25, 0, 0.25, 0),
"times": PackedFloat32Array(0)
}
[sub_resource type="Animation" id="Animation_0vds4"]
resource_name = "bounce"
loop_mode = 1
tracks/0/type = "bezier"
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/path = NodePath("HSeparator:theme_override_constants/separation")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/keys = {
"handle_modes": PackedInt32Array(0, 3, 0),
"points": PackedFloat32Array(0, -0.25, 0, 0.43333334, 0.0279046, 10, -0.18480387, 0, 0.18480387, 0, 0, -0.5333333, -0.073566735, 0, 0),
"times": PackedFloat32Array(0, 0.46666667, 1)
}
[sub_resource type="AnimationLibrary" id="AnimationLibrary_0j8fm"]
_data = {
&"RESET": SubResource("Animation_5icsl"),
&"bounce": SubResource("Animation_0vds4")
}
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rf16a"]
bg_color = Color(1, 0, 0.43137255, 1)
border_width_left = 10
@@ -64,7 +107,7 @@ shader = ExtResource("8_pjo5j")
shader_parameter/strength = 5.00000023424012
shader_parameter/mix_percentage = 0.3
[sub_resource type="FastNoiseLite" id="FastNoiseLite_lwj2x"]
[sub_resource type="FastNoiseLite" id="FastNoiseLite_rf16a"]
frequency = 1.0
[sub_resource type="Animation" id="Animation_gn4uv"]
@@ -299,6 +342,37 @@ size_flags_horizontal = 8
size_flags_vertical = 0
text = "Version"
[node name="TwitchContainer" type="VBoxContainer" parent="MarginContainer" unique_id=1193568878]
layout_mode = 2
size_flags_horizontal = 4
size_flags_vertical = 8
theme_override_constants/separation = 0
[node name="TwitchInfo" type="HBoxContainer" parent="MarginContainer/TwitchContainer" unique_id=1516020408]
layout_mode = 2
size_flags_horizontal = 0
size_flags_vertical = 8
alignment = 2
[node name="TextureRect" type="TextureRect" parent="MarginContainer/TwitchContainer/TwitchInfo" unique_id=1757288448]
modulate = Color(0.54509807, 0.1764706, 1, 1)
layout_mode = 2
texture = ExtResource("3_gn4uv")
[node name="Label" type="Label" parent="MarginContainer/TwitchContainer/TwitchInfo" unique_id=1597620585]
layout_mode = 2
text = "TWITCH_INTEGRATION_IN_THE_SETTINGS"
label_settings = SubResource("LabelSettings_1xafb")
[node name="HSeparator" type="HSeparator" parent="MarginContainer/TwitchContainer" unique_id=1913605901]
layout_mode = 2
theme_override_constants/separation = 0
theme_override_styles/separator = SubResource("StyleBoxEmpty_g4v7s")
[node name="AnimationPlayer" type="AnimationPlayer" parent="MarginContainer/TwitchContainer" unique_id=1532371629]
libraries/ = SubResource("AnimationLibrary_0j8fm")
autoplay = &"bounce"
[node name="GridContainer" type="HBoxContainer" parent="MarginContainer" unique_id=975183276]
layout_mode = 2
alignment = 1
@@ -332,9 +406,6 @@ size_flags_horizontal = 4
size_flags_vertical = 4
theme = ExtResource("1_4ph5l")
theme_override_font_sizes/font_size = 33
theme_override_styles/normal = SubResource("StyleBoxFlat_rf16a")
theme_override_styles/pressed = SubResource("StyleBoxFlat_gn4uv")
theme_override_styles/hover = SubResource("StyleBoxFlat_ofiho")
text = "START"
icon = ExtResource("3_6yuhi")
@@ -452,7 +523,7 @@ size = Vector2i(1980, 1080)
[node name="Planet3d" parent="SubViewport" unique_id=926789923 instance=ExtResource("5_7a1qq")]
unique_name_in_owner = true
noise = SubResource("FastNoiseLite_lwj2x")
noise = SubResource("FastNoiseLite_rf16a")
[node name="Camera3D" type="Camera3D" parent="SubViewport" unique_id=806252928]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -14.369979, 0, 64.323425)

View File

@@ -20,6 +20,7 @@ RESUME_GAME,Resume,Reprendre
RESTART,Restart,Recommencer
RESTART_DEMO,Restart demo,Recommencer la démo
QUIT,Quit,Quitter
TWITCH_INTEGRATION_IN_THE_SETTINGS,Twitch integration in the settings!,Intégration twitch dans les paramètres !
THIS_GAME_USE_AUTOSAVE,This game use autosave,Ce jeu sauvegarde votre progression automatiquement
CHOOSE_GAME_MODE,Choose game mode,Choisissez le mode de jeu
STORY_MODE,Story Mode,Mode Histoire
@@ -193,6 +194,11 @@ UI_SIZE,Ui Size,Taille de l'UI
GAME,Game,Jeu
MOUSE_SENSIVITY,Mouse Sensivity in 3D scenes,Sensibilité de la souris dans les scènes en 3D
AUTO_PICKUP,Auto pickup seeds,Récolte automatique des graines
TWITCH_INTEGRATION,Twitch integration (beta),Intégration Twitch (béta)
ACTIVATE_TWITCH_INTERACTION,Activate Twitch Integration,Activer l'intégration Twitch
TWITCH_CHANNEL,Twitch channel name,Nom de la chaine Twitch
PSEUDO_GATHERED_%d,"Connected, %d pseudos gathered","Connecté, %d pseudos récupérés"
TWITCH_NOT_CONNECTED,"Twitch not connected","Non connecté à Twitch"
CONTROLS,Controls,Contrôles
MOVE_RIGHT,Move right,Déplacement à droite
MOVE_LEFT,Move left,Déplacement à gauche
1 keys en fr
20 RESTART Restart Recommencer
21 RESTART_DEMO Restart demo Recommencer la démo
22 QUIT Quit Quitter
23 TWITCH_INTEGRATION_IN_THE_SETTINGS Twitch integration in the settings! Intégration twitch dans les paramètres !
24 THIS_GAME_USE_AUTOSAVE This game use autosave Ce jeu sauvegarde votre progression automatiquement
25 CHOOSE_GAME_MODE Choose game mode Choisissez le mode de jeu
26 STORY_MODE Story Mode Mode Histoire
194 GAME Game Jeu
195 MOUSE_SENSIVITY Mouse Sensivity in 3D scenes Sensibilité de la souris dans les scènes en 3D
196 AUTO_PICKUP Auto pickup seeds Récolte automatique des graines
197 TWITCH_INTEGRATION Twitch integration (beta) Intégration Twitch (béta)
198 ACTIVATE_TWITCH_INTERACTION Activate Twitch Integration Activer l'intégration Twitch
199 TWITCH_CHANNEL Twitch channel name Nom de la chaine Twitch
200 PSEUDO_GATHERED_%d Connected, %d pseudos gathered Connecté, %d pseudos récupérés
201 TWITCH_NOT_CONNECTED Twitch not connected Non connecté à Twitch
202 CONTROLS Controls Contrôles
203 MOVE_RIGHT Move right Déplacement à droite
204 MOVE_LEFT Move left Déplacement à gauche