Compare commits
7 Commits
main
...
presentati
Author | SHA1 | Date | |
---|---|---|---|
0bda833b4a | |||
c5fa0c0096 | |||
ce13ec64b2 | |||
fc9bd98cba | |||
9f25a6e9d7 | |||
410435d35a | |||
ccd9b22dbb |
@ -1,10 +0,0 @@
|
|||||||
<Project Sdk="Godot.NET.Sdk/4.1.1">
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
|
||||||
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
||||||
<RootNamespace>GodofAI</RootNamespace>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
@ -1,19 +0,0 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
||||||
# Visual Studio 2012
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "God of AI", "God of AI.csproj", "{9F042379-873C-42A6-B544-C877BAB3A96D}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Any CPU = Debug|Any CPU
|
|
||||||
ExportDebug|Any CPU = ExportDebug|Any CPU
|
|
||||||
ExportRelease|Any CPU = ExportRelease|Any CPU
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{9F042379-873C-42A6-B544-C877BAB3A96D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{9F042379-873C-42A6-B544-C877BAB3A96D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{9F042379-873C-42A6-B544-C877BAB3A96D}.ExportDebug|Any CPU.ActiveCfg = ExportDebug|Any CPU
|
|
||||||
{9F042379-873C-42A6-B544-C877BAB3A96D}.ExportDebug|Any CPU.Build.0 = ExportDebug|Any CPU
|
|
||||||
{9F042379-873C-42A6-B544-C877BAB3A96D}.ExportRelease|Any CPU.ActiveCfg = ExportRelease|Any CPU
|
|
||||||
{9F042379-873C-42A6-B544-C877BAB3A96D}.ExportRelease|Any CPU.Build.0 = ExportRelease|Any CPU
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
@ -1,37 +0,0 @@
|
|||||||
using Godot;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
public partial class LLMApiRequest : HttpRequest
|
|
||||||
{
|
|
||||||
public record AnswerRequest(
|
|
||||||
Message[] Context,
|
|
||||||
string Prompt
|
|
||||||
);
|
|
||||||
|
|
||||||
public record Message(
|
|
||||||
string Role,
|
|
||||||
string? Content
|
|
||||||
);
|
|
||||||
|
|
||||||
private bool PostToApiIsSet = false;
|
|
||||||
|
|
||||||
// Called when the node enters the scene tree for the first time.
|
|
||||||
public override void _Ready()
|
|
||||||
{
|
|
||||||
SetProcess(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void PostToApi(Action<long, long, string[], byte[]> action)
|
|
||||||
{
|
|
||||||
if(!PostToApiIsSet)
|
|
||||||
{
|
|
||||||
RequestCompleted += (long result, long responseCode, string[] headers, byte[] body) => action(result, responseCode, headers, body);
|
|
||||||
PostToApiIsSet = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
var answerRequest = new AnswerRequest(new[] { new Message("user", "Hello!"), }, "aodneris");
|
|
||||||
|
|
||||||
|
|
||||||
Request($"http://localhost:5246/LLM/Test", new[] { "Content-Type: application/json" }, HttpClient.Method.Get, Newtonsoft.Json.JsonConvert.SerializeObject(answerRequest));
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,25 +1,22 @@
|
|||||||
using Godot;
|
using Godot;
|
||||||
using System;
|
using System;
|
||||||
using System.Net.Cache;
|
|
||||||
|
|
||||||
public partial class Playbutton : Button
|
public partial class Playbutton : Button
|
||||||
{
|
{
|
||||||
private LLMApiRequest llmApiRequest;
|
|
||||||
|
|
||||||
// Called when the node enters the scene tree for the first time.
|
// Called when the node enters the scene tree for the first time.
|
||||||
public override void _Ready()
|
public override void _Ready()
|
||||||
{
|
{
|
||||||
SetProcess(false);
|
this.Pressed += ButtonPressed;
|
||||||
llmApiRequest = GetNode<LLMApiRequest>("/root/Node2D/HTTPRequests");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void _Pressed()
|
// Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||||
|
public override void _Process(double delta)
|
||||||
{
|
{
|
||||||
// llmApiRequest.RequestCompleted += OnRequestCompleted;
|
|
||||||
// llmApiRequest.Request("https://api.github.com/repos/godotengine/godot/releases/latest");
|
|
||||||
llmApiRequest?.PostToApi(OnRequestCompleted);
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ButtonPressed()
|
||||||
|
{
|
||||||
GD.Print("a");
|
GD.Print("a");
|
||||||
var node = this.GetNode<CanvasLayer>("Ingame/Ingame");
|
var node = this.GetNode<CanvasLayer>("Ingame/Ingame");
|
||||||
node.SetProcess(true);
|
node.SetProcess(true);
|
||||||
@ -27,12 +24,4 @@ public partial class Playbutton : Button
|
|||||||
var GParent = this.GetTree().Root.GetNode<CanvasLayer>("Root/Hauptmenü/HauptMenü");
|
var GParent = this.GetTree().Root.GetNode<CanvasLayer>("Root/Hauptmenü/HauptMenü");
|
||||||
GParent.Hide();
|
GParent.Hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnRequestCompleted(long result, long responseCode, string[] headers, byte[] body)
|
|
||||||
{
|
|
||||||
// Godot.Collections.Dictionary json = Json.ParseString(System.Text.Encoding.UTF8.GetString(body)).AsGodotDictionary();
|
|
||||||
// GD.Print(json["name"]);
|
|
||||||
// GD.Print(Json.ParseString(System.Text.Encoding.UTF8.GetString(body)).AsGodotDictionary());
|
|
||||||
GD.Print(System.Text.Encoding.UTF8.GetString(body));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
using Godot;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
public partial class PopupMenuSzenen : MenuButton
|
|
||||||
{
|
|
||||||
// Called when the node enters the scene tree for the first time.
|
|
||||||
public override void _Ready()
|
|
||||||
{
|
|
||||||
this.Pressed += ButtonPressed;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
||||||
public override void _Process(double delta)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private void ButtonPressed()
|
|
||||||
{
|
|
||||||
GD.Print("abc");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,11 +1,9 @@
|
|||||||
[gd_scene load_steps=8 format=3 uid="uid://1gar30yhw8ay"]
|
[gd_scene load_steps=6 format=3 uid="uid://1gar30yhw8ay"]
|
||||||
|
|
||||||
[ext_resource type="Script" path="res://Hauptmenü.cs" id="1_4eu52"]
|
[ext_resource type="Script" path="res://Hauptmenü.cs" id="1_4eu52"]
|
||||||
[ext_resource type="Script" path="res://TextEdit.cs" id="1_5gfrp"]
|
[ext_resource type="Script" path="res://TextEdit.cs" id="1_5gfrp"]
|
||||||
[ext_resource type="Texture2D" uid="uid://vn2ficr8n4n5" path="res://GodofAi.jpg" id="2_m684j"]
|
[ext_resource type="Texture2D" uid="uid://vn2ficr8n4n5" path="res://GodofAi.jpg" id="2_m684j"]
|
||||||
[ext_resource type="Script" path="res://PopupMenuSzenen.cs" id="3_l3xnr"]
|
|
||||||
[ext_resource type="Script" path="res://Playbutton.cs" id="3_ucfae"]
|
[ext_resource type="Script" path="res://Playbutton.cs" id="3_ucfae"]
|
||||||
[ext_resource type="Script" path="res://LLMApiRequests.cs" id="5_pukni"]
|
|
||||||
|
|
||||||
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_ncw85"]
|
[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_ncw85"]
|
||||||
|
|
||||||
@ -73,7 +71,6 @@ popup/item_10/text = "Krimi 1"
|
|||||||
popup/item_10/id = 10
|
popup/item_10/id = 10
|
||||||
popup/item_11/text = "Krimi 2"
|
popup/item_11/text = "Krimi 2"
|
||||||
popup/item_11/id = 11
|
popup/item_11/id = 11
|
||||||
script = ExtResource("3_l3xnr")
|
|
||||||
|
|
||||||
[node name="TextEdit" type="TextEdit" parent="Hauptmenü/HauptMenü/VBoxContainer"]
|
[node name="TextEdit" type="TextEdit" parent="Hauptmenü/HauptMenü/VBoxContainer"]
|
||||||
custom_minimum_size = Vector2(520, 300)
|
custom_minimum_size = Vector2(520, 300)
|
||||||
@ -367,10 +364,3 @@ offset_bottom = 719.0
|
|||||||
texture = SubResource("CompressedTexture2D_ncw85")
|
texture = SubResource("CompressedTexture2D_ncw85")
|
||||||
expand_mode = 1
|
expand_mode = 1
|
||||||
stretch_mode = 1
|
stretch_mode = 1
|
||||||
|
|
||||||
[node name="LLMApiRequests" type="HTTPRequest" parent="."]
|
|
||||||
script = ExtResource("5_pukni")
|
|
||||||
|
|
||||||
[node name="Button" type="Button" parent="."]
|
|
||||||
offset_right = 8.0
|
|
||||||
offset_bottom = 8.0
|
|
||||||
|
BIN
presentation/GodOfAi.odp
Normal file
BIN
presentation/GodOfAi.odp
Normal file
Binary file not shown.
BIN
presentation/GodOfAi.pdf
Normal file
BIN
presentation/GodOfAi.pdf
Normal file
Binary file not shown.
Reference in New Issue
Block a user