aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/graphics.lua62
-rw-r--r--examples/icons/icon_1.pngbin352069 -> 0 bytes
-rw-r--r--examples/icons/icon_2.pngbin455412 -> 0 bytes
-rw-r--r--examples/json.lua10
-rw-r--r--examples/test.json4
5 files changed, 0 insertions, 76 deletions
diff --git a/examples/graphics.lua b/examples/graphics.lua
deleted file mode 100644
index 6c1f8e4..0000000
--- a/examples/graphics.lua
+++ /dev/null
@@ -1,62 +0,0 @@
1asset1 = load_image("examples/icons/armor_3.png")
2
3open_window(800, 800, "Sample Window")
4set_fps(60)
5
6function test_api()
7 draw_rect(100, 100, 300, 200, color.YELLOW)
8 draw_text("Label text", 10, 10, 20, color.VIOLET)
9 draw_line(400, 10, 500, 100, color.RED)
10 draw_circle(500, 500, 100, color.BLUE)
11 draw_ellipse(200, 500, 100, 50, color.BLUE)
12 draw_triangle(20, 20, 100, 20, 50, 100, color.BLUE)
13 draw_text(string.format("fps: %d", get_fps()), 10, 30, 20, color.VIOLET)
14 draw_text(string.format("dt: %.3f", get_dt()), 10, 50, 20, color.VIOLET)
15end
16
17function test_buttons()
18 if button_pressed(button.PAD_UP) then
19 draw_text("Pad Up", 10, 10, 20, color.VIOLET)
20 end
21
22 if button_pressed(button.PAD_DOWN) then
23 draw_text("Pad Down", 10, 40, 20, color.VIOLET)
24 end
25
26 if button_pressed(button.PAD_LEFT) then
27 draw_text("Pad Left", 10, 70, 20, color.VIOLET)
28 end
29
30 if button_pressed(button.PAD_RIGHT) then
31 draw_text("Pad Right", 10, 100, 20, color.VIOLET)
32 end
33
34 if button_pressed(button.A) then
35 draw_text("A", 150, 10, 20, color.VIOLET)
36 end
37
38 if button_pressed(button.B) then
39 draw_text("B", 150, 40, 20, color.VIOLET)
40 end
41
42 if button_pressed(button.X) then
43 draw_text("X", 150, 70, 20, color.VIOLET)
44 end
45
46 if button_pressed(button.Y) then
47 draw_text("Y", 150, 100, 20, color.VIOLET)
48 end
49end
50
51while window_running() do
52 begin_drawing()
53 clear_window(color.BLACK)
54
55 -- test_api()
56 test_buttons()
57
58 draw_info()
59 end_drawing()
60end
61
62close_window()
diff --git a/examples/icons/icon_1.png b/examples/icons/icon_1.png
deleted file mode 100644
index 4785224..0000000
--- a/examples/icons/icon_1.png
+++ /dev/null
Binary files differ
diff --git a/examples/icons/icon_2.png b/examples/icons/icon_2.png
deleted file mode 100644
index c19d642..0000000
--- a/examples/icons/icon_2.png
+++ /dev/null
Binary files differ
diff --git a/examples/json.lua b/examples/json.lua
deleted file mode 100644
index 17a1930..0000000
--- a/examples/json.lua
+++ /dev/null
@@ -1,10 +0,0 @@
1local file = io.open("examples/test.json", "r")
2local content = file:read("*a")
3file:close()
4
5local data = json.decode(content)
6
7print("name: " .. data.name)
8for _, n in pairs(data.numbers) do
9 print(" - number: " .. n)
10end
diff --git a/examples/test.json b/examples/test.json
deleted file mode 100644
index 4bd3e38..0000000
--- a/examples/test.json
+++ /dev/null
@@ -1,4 +0,0 @@
1{
2 "name": "Bob",
3 "numbers": [1, 3, 5, 2]
4}