Merge branch 'dev' into pathfinding

This commit is contained in:
MihailRis
2025-09-09 20:03:11 +03:00
5 changed files with 111 additions and 20 deletions
+26 -5
View File
@@ -6,9 +6,15 @@ A library for working with the network.
```lua
-- Performs a GET request to the specified URL.
-- After receiving the response, passes the text to the callback function.
-- In case of an error, the HTTP response code will be passed to onfailure.
network.get(url: str, callback: function(str), [optional] onfailure: function(int))
network.get(
url: str,
-- Function to call when response is received
callback: function(str),
-- Error handler
[optional] onfailure: function(int),
-- List of additional request headers
[optional] headers: table<string>
)
-- Example:
network.get("https://api.github.com/repos/MihailRis/VoxelEngine-Cpp/releases/latest", function (s)
@@ -16,13 +22,28 @@ network.get("https://api.github.com/repos/MihailRis/VoxelEngine-Cpp/releases/lat
end)
-- A variant for binary files, with a byte array instead of a string in the response.
network.get_binary(url: str, callback: function(table|ByteArray), [optional] onfailure: function(int))
network.get_binary(
url: str,
callback: function(table|ByteArray),
[optional] onfailure: function(int),
[optional] headers: table<string>
)
-- Performs a POST request to the specified URL.
-- Currently, only `Content-Type: application/json` is supported
-- After receiving the response, passes the text to the callback function.
-- In case of an error, the HTTP response code will be passed to onfailure.
network.post(url: str, data: table, callback: function(str), [optional] onfailure: function(int))
network.post(
url: str,
-- Request body as a table (will be converted to JSON) or string
body: table|string,
-- Function called when response is received
callback: function(str),
-- Error handler
[optional] onfailure: function(int),
-- List of additional request headers
[optional] headers: table<string>
)
```
## TCP Connections