2024-04-25 00:27:13 -04:00
|
|
|
-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
|
|
|
|
--
|
|
|
|
-- GNU General Public Licence (version 3 or later)
|
|
|
|
|
2024-05-16 14:52:41 -04:00
|
|
|
with core, ui, attribute, skill, resource, faction, equipment;
|
2024-02-22 03:29:04 -05:00
|
|
|
|
|
|
|
package body chad is
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-16 12:35:36 -04:00
|
|
|
view_width : constant integer := 64;
|
|
|
|
view_height : constant integer := 96;
|
|
|
|
|
|
|
|
sprite : array (enumeration) of core.sprite;
|
|
|
|
view_sprite : array (enumeration) of core.sprite;
|
2024-04-23 16:19:29 -04:00
|
|
|
|
2024-05-01 14:41:55 -04:00
|
|
|
pepe_the_frog : core.sprite;
|
2024-05-03 05:28:44 -04:00
|
|
|
alice_the_mad : core.sprite;
|
2024-05-01 14:41:55 -04:00
|
|
|
|
2024-04-23 16:19:29 -04:00
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-02-22 03:29:04 -05:00
|
|
|
procedure configure is
|
|
|
|
begin
|
2024-03-11 08:42:25 -04:00
|
|
|
core.echo (core.comment, "Configuring chad components...");
|
|
|
|
--
|
2024-05-01 14:41:55 -04:00
|
|
|
pepe_the_frog := core.import_sprite ("./sprite/unit/pepe_the_frog.png", 4, 6);
|
2024-05-03 05:28:44 -04:00
|
|
|
alice_the_mad := core.import_sprite ("./sprite/unit/alice_the_mad.png", 4, 6);
|
2024-05-01 14:41:55 -04:00
|
|
|
--
|
2024-04-27 10:01:54 -04:00
|
|
|
for index in enumeration loop
|
2024-05-16 12:35:36 -04:00
|
|
|
sprite (index) := core.import_sprite ("./sprite/chad/" & core.lowercase (enumeration'image (index)) & ".png", 4, 6);
|
|
|
|
view_sprite (index) := core.import_sprite ("./sprite/chad/view/" & core.lowercase (enumeration'image (index)) & ".png", 1, 1);
|
2024-02-22 03:29:04 -05:00
|
|
|
null;
|
|
|
|
end loop;
|
|
|
|
end configure;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-16 14:52:41 -04:00
|
|
|
procedure draw (player : in data; x, y : in integer) is
|
2024-02-22 03:29:04 -05:00
|
|
|
begin
|
2024-05-16 14:52:41 -04:00
|
|
|
core.draw (sprite (player.index), x, y, state => player.state);
|
|
|
|
--
|
|
|
|
for index in equipment.slot loop
|
2024-05-17 18:35:31 -04:00
|
|
|
equipment.draw (player.equipments (index), player.state, x, y);
|
2024-05-16 14:52:41 -04:00
|
|
|
end loop;
|
2024-02-22 03:29:04 -05:00
|
|
|
end draw;
|
|
|
|
|
2024-05-01 14:41:55 -04:00
|
|
|
------------------------------------------------------------------------------------------
|
2024-05-16 12:35:36 -04:00
|
|
|
|
2024-05-16 14:52:41 -04:00
|
|
|
procedure view (player : in data; x, y : in integer) is
|
2024-05-16 12:35:36 -04:00
|
|
|
begin
|
2024-05-16 14:52:41 -04:00
|
|
|
ui.draw_sprite (view_sprite (player.index), trait (player.index).name, x, y, 0);
|
2024-05-16 12:35:36 -04:00
|
|
|
end view;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
2024-05-01 14:41:55 -04:00
|
|
|
|
2024-05-11 00:28:50 -04:00
|
|
|
procedure draw_data (player : in data; x, y : in integer) is
|
2024-05-16 13:17:36 -04:00
|
|
|
offset : constant integer := 8;
|
2024-05-11 00:28:50 -04:00
|
|
|
begin
|
2024-05-16 13:17:36 -04:00
|
|
|
ui.draw_frame ("--", x, y, 360 + 2 * offset, 96 + 2 * offset);
|
|
|
|
--
|
2024-05-16 14:52:41 -04:00
|
|
|
view (player, x + offset, y + offset);
|
2024-05-16 13:17:36 -04:00
|
|
|
--
|
|
|
|
ui.draw_tiny_fill_bar (x + view_width + 2 * offset, y + 1 * core.icon + offset, 4 * core.icon, float (player.health.value) / float (player.health.limit));
|
|
|
|
ui.draw_tiny_fill_bar (x + view_width + 2 * offset, y + 2 * core.icon + offset, 4 * core.icon, float (player.mana.value) / float (player.mana.limit));
|
|
|
|
ui.draw_tiny_fill_bar (x + view_width + 2 * offset, y + 3 * core.icon + offset, 4 * core.icon, float (player.stamina.value) / float (player.stamina.limit));
|
|
|
|
--
|
|
|
|
ui.write (text => "Health " & player.health.value'image & " /" & player.health.limit'image,
|
|
|
|
x => x + view_width + 4 * core.icon + 3 * offset,
|
|
|
|
y => y + 2 * offset,
|
|
|
|
tint => (255, 127, 127, 255),
|
|
|
|
size => 15,
|
|
|
|
code => true);
|
|
|
|
ui.write (text => "Mana " & player.mana.value'image & " /" & player.mana.limit'image,
|
|
|
|
x => x + view_width + 4 * core.icon + 3 * offset,
|
|
|
|
y => y + core.icon + 2 * offset,
|
|
|
|
tint => (127, 127, 255, 255),
|
|
|
|
size => 15,
|
|
|
|
code => true);
|
|
|
|
ui.write (text => "Stamina" & player.stamina.value'image & " /" & player.stamina.limit'image,
|
|
|
|
x => x + view_width + 4 * core.icon + 3 * offset,
|
|
|
|
y => y + 2 * core.icon + 2 * offset,
|
|
|
|
tint => (127, 255, 127, 255),
|
|
|
|
size => 15,
|
|
|
|
code => true);
|
|
|
|
--
|
2024-05-17 21:00:50 -04:00
|
|
|
attribute.draw_points (player.attributes, x, y + 96 + 3 * offset);
|
2024-05-17 19:37:52 -04:00
|
|
|
--
|
|
|
|
for index_y in 0 .. 3 loop
|
|
|
|
for index_x in 0 .. 5 loop
|
|
|
|
ui.draw_icon (data => equipment.icon_sprite (player.items (6 * index_y + index_x)),
|
|
|
|
text => equipment.trait (player.items (6 * index_y + index_x)).name,
|
|
|
|
x => x + index_x * core.icon,
|
2024-05-17 21:00:50 -04:00
|
|
|
y => y + 96 + 4 * offset + 2 * core.icon + index_y * core.icon);
|
2024-05-17 19:37:52 -04:00
|
|
|
end loop;
|
|
|
|
end loop;
|
2024-05-17 21:00:50 -04:00
|
|
|
--
|
|
|
|
skill.draw_points (player.skills, x, y + 96 + 5 * offset + 6 * core.icon);
|
2024-05-11 00:28:50 -04:00
|
|
|
end draw_data;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-16 14:52:41 -04:00
|
|
|
procedure draw_menu (player : in data; x, y : in integer) is
|
|
|
|
begin
|
|
|
|
null;
|
|
|
|
end draw_menu;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-17 18:35:31 -04:00
|
|
|
function take_equipment_item (player : in out data; item : in equipment.enumeration) return boolean is
|
|
|
|
begin
|
2024-05-17 20:02:37 -04:00
|
|
|
if player.item_count = item_limit or not equipment.exist (item) then
|
2024-05-17 18:35:31 -04:00
|
|
|
return false;
|
|
|
|
end if;
|
|
|
|
--
|
|
|
|
player.items (player.item_count) := item;
|
|
|
|
--
|
|
|
|
core.increment (player.item_count);
|
|
|
|
--
|
|
|
|
return true;
|
|
|
|
end take_equipment_item;
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-01 14:41:55 -04:00
|
|
|
procedure draw_pepe is
|
|
|
|
begin
|
|
|
|
core.draw (pepe_the_frog, (core.window_width - core.base) / 2, (core.window_height - core.base) / 2);
|
|
|
|
end draw_pepe;
|
|
|
|
|
2024-05-03 05:28:44 -04:00
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
procedure draw_alice is
|
|
|
|
begin
|
|
|
|
core.draw (alice_the_mad, (core.window_width - core.base) / 2, (core.window_height - core.base) / 2);
|
|
|
|
end draw_alice;
|
|
|
|
|
2024-02-22 03:29:04 -05:00
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
end chad;
|