2024-04-25 00:27:13 -04:00
-- Copyright (c) 2024 - Ognjen 'xolatile' Milan Robovic
--
-- GNU General Public Licence (version 3 or later)
2024-03-22 00:37:54 -04:00
pragma ada_2012 ;
2024-02-15 21:03:09 -05:00
2024-05-11 03:38:33 -04:00
--~with core, ui, effect, attribute, skill, resource, faction, might, magic, equipment, unit, construction, chad, deity, world, ai;
2024-05-12 20:15:36 -04:00
with core , ui , effect , attribute , skill , resource , faction , material , equipment , unit , construction , chad , world ;
2024-02-15 21:03:09 -05:00
2024-05-12 20:45:26 -04:00
with ada.strings.unbounded ;
use ada.strings.unbounded ;
2024-05-13 09:20:16 -04:00
use core ;
2024-02-15 21:03:09 -05:00
procedure main is
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2024-05-01 15:19:12 -04:00
side_panel : integer := 0 ;
2024-04-27 03:49:02 -04:00
preview_width : integer := 0 ;
preview_height : integer := 0 ;
2024-05-01 15:19:12 -04:00
text_box_height : integer := 0 ;
2024-02-18 09:02:33 -05:00
2024-05-11 00:28:50 -04:00
player : chad . data := (
index => chad . ognjen ,
attributes => ( 1 , 2 , 3 , 4 , 5 , 6 ) ,
2024-05-11 01:45:06 -04:00
skills => ( 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , others => 0 ) ,
2024-05-11 03:03:28 -04:00
resources => ( 101 , 103 , 107 , 109 , 113 , 127 )
2024-05-11 00:28:50 -04:00
) ;
2024-02-22 06:51:01 -05:00
2024-03-16 08:08:50 -04:00
------------------------------------------------------------------------------------------
2024-05-04 07:22:16 -04:00
type view is (
2024-05-03 06:10:13 -04:00
map_preview_panel , status_preview_panel , text_box_panel
) ;
2024-05-08 16:45:08 -04:00
view_icon : array ( view ) of sprite := ( others => ( others => 0 ) ) ;
view_list : array ( view ) of boolean := ( others => true ) ;
view_text : array ( view ) of long_string := (
2024-05-03 06:10:13 -04:00
"Toggle map preview panel. " ,
"Toggle status preview panel. " ,
"Toggle text box panel. "
) ;
2024-05-08 16:45:08 -04:00
procedure swap_map_preview_panel is begin view_list ( map_preview_panel ) := not view_list ( map_preview_panel ) ; end swap_map_preview_panel ;
procedure swap_status_preview_panel is begin view_list ( status_preview_panel ) := not view_list ( status_preview_panel ) ; end swap_status_preview_panel ;
procedure swap_text_box_panel is begin view_list ( text_box_panel ) := not view_list ( text_box_panel ) ; end swap_text_box_panel ;
2024-05-03 06:10:13 -04:00
2024-05-04 07:22:16 -04:00
view_show : array ( view ) of access procedure := (
swap_map_preview_panel ' access ,
swap_status_preview_panel ' access ,
swap_text_box_panel ' access
2024-05-03 06:10:13 -04:00
) ;
2024-05-10 22:09:30 -04:00
game_title : sprite ;
2024-05-11 00:28:50 -04:00
game_preview : array ( world . biome ) of sprite ;
2024-05-09 09:11:26 -04:00
2024-05-10 23:44:09 -04:00
switch : natural := 0 ;
2024-05-11 00:28:50 -04:00
choose : world . biome := world . grass ;
2024-05-03 06:10:13 -04:00
------------------------------------------------------------------------------------------
2024-05-08 16:45:08 -04:00
procedure check_move_camera_up is
2024-05-06 13:59:08 -04:00
begin
2024-05-08 16:45:08 -04:00
move_camera_up ;
camera . y := clip ( camera . y , 0 , world . map . height - 1 ) ;
if world . map . clips ( camera . x , camera . y ) then
increment ( camera . y ) ;
2024-05-06 13:59:08 -04:00
end if ;
2024-05-08 16:45:08 -04:00
end check_move_camera_up ;
2024-05-06 13:59:08 -04:00
2024-05-08 16:45:08 -04:00
procedure check_move_camera_down is
2024-05-06 13:59:08 -04:00
begin
2024-05-08 16:45:08 -04:00
move_camera_down ;
camera . y := clip ( camera . y , 0 , world . map . height - 1 ) ;
if world . map . clips ( camera . x , camera . y ) then
decrement ( camera . y ) ;
2024-05-06 13:59:08 -04:00
end if ;
2024-05-08 16:45:08 -04:00
end check_move_camera_down ;
2024-05-06 13:59:08 -04:00
2024-05-08 16:45:08 -04:00
procedure check_move_camera_left is
2024-05-06 13:59:08 -04:00
begin
2024-05-08 16:45:08 -04:00
move_camera_left ;
camera . x := clip ( camera . x , 0 , world . map . width - 1 ) ;
if world . map . clips ( camera . x , camera . y ) then
increment ( camera . x ) ;
2024-05-06 13:59:08 -04:00
end if ;
2024-05-08 16:45:08 -04:00
end check_move_camera_left ;
2024-05-06 13:59:08 -04:00
2024-05-08 16:45:08 -04:00
procedure check_move_camera_right is
2024-05-06 13:59:08 -04:00
begin
2024-05-08 16:45:08 -04:00
move_camera_right ;
camera . x := clip ( camera . x , 0 , world . map . width - 1 ) ;
if world . map . clips ( camera . x , camera . y ) then
decrement ( camera . x ) ;
2024-05-06 13:59:08 -04:00
end if ;
2024-05-08 16:45:08 -04:00
end check_move_camera_right ;
2024-05-06 13:59:08 -04:00
2024-05-04 07:22:16 -04:00
procedure ui_main_style is
begin
2024-05-10 22:09:30 -04:00
ui . active := ui . style ' val ( ( ui . style ' pos ( ui . active ) + 1 ) mod ui . style_count ) ;
2024-05-04 07:22:16 -04:00
end ui_main_style ;
2024-03-16 08:08:50 -04:00
2024-05-08 16:45:08 -04:00
procedure zoom_in is begin zoom := 2 ; end zoom_in ;
procedure zoom_out is begin zoom := 1 ; end zoom_out ;
signal_list : constant array ( signal_code ) of access procedure := (
signal_up => check_move_camera_up ' access ,
signal_down => check_move_camera_down ' access ,
signal_left => check_move_camera_left ' access ,
signal_right => check_move_camera_right ' access ,
signal_v => ui_main_style ' access ,
signal_kp_add => zoom_in ' access ,
signal_kp_subtract => zoom_out ' access ,
2024-05-12 10:07:37 -04:00
signal_m => world . reveal_map ' access ,
2024-05-09 05:07:20 -04:00
others => idle_skip ' access
2024-03-16 06:52:32 -04:00
) ;
2024-03-16 06:14:28 -04:00
2024-05-08 16:17:47 -04:00
------------------------------------------------------------------------------------------
2024-05-09 11:03:39 -04:00
procedure main_menu is
begin
2024-05-10 22:09:30 -04:00
draw ( game_preview ( world . ash ) , center_x ( game_preview ( world . ash ) . width * 2 ) , center_y ( game_preview ( world . ash ) . height * 2 ) , factor => 2 ) ;
draw ( game_title , center_x ( game_title . width * 2 ) , center_y ( game_title . height * 2 ) , factor => 2 ) ;
2024-05-09 11:03:39 -04:00
--
2024-05-10 22:09:30 -04:00
ui . write ( "Main Menu" , 0 , 0 ) ;
2024-05-09 11:28:40 -04:00
--
2024-05-09 12:52:23 -04:00
ui . draw_check_box ( 0 , 32 , view_list ( map_preview_panel ) , "map_preview_panel" ) ;
ui . draw_check_box ( 0 , 64 , view_list ( status_preview_panel ) , "status_preview_panel" ) ;
ui . draw_check_box ( 0 , 96 , view_list ( text_box_panel ) , "text_box_panel" ) ;
2024-05-09 11:03:39 -04:00
end main_menu ;
2024-05-13 09:20:16 -04:00
view_source_code : natural := 25 ;
source_code : array ( 0 . . 35 ) of unbounded_string := (
to_unbounded_string ( "./source/ai.adb" ) ,
to_unbounded_string ( "./source/ai.ads" ) ,
to_unbounded_string ( "./source/attribute.adb" ) ,
to_unbounded_string ( "./source/attribute.ads" ) ,
to_unbounded_string ( "./source/chad.adb" ) ,
to_unbounded_string ( "./source/chad.ads" ) ,
to_unbounded_string ( "./source/construction.adb" ) ,
to_unbounded_string ( "./source/construction.ads" ) ,
to_unbounded_string ( "./source/core.adb" ) ,
to_unbounded_string ( "./source/core.ads" ) ,
to_unbounded_string ( "./source/deity.adb" ) ,
to_unbounded_string ( "./source/deity.ads" ) ,
to_unbounded_string ( "./source/effect.adb" ) ,
to_unbounded_string ( "./source/effect.ads" ) ,
to_unbounded_string ( "./source/equipment.adb" ) ,
to_unbounded_string ( "./source/equipment.ads" ) ,
to_unbounded_string ( "./source/faction.adb" ) ,
to_unbounded_string ( "./source/faction.ads" ) ,
to_unbounded_string ( "./source/magic.adb" ) ,
to_unbounded_string ( "./source/magic.ads" ) ,
to_unbounded_string ( "./source/main.adb" ) ,
to_unbounded_string ( "./source/material.adb" ) ,
to_unbounded_string ( "./source/material.ads" ) ,
to_unbounded_string ( "./source/might.adb" ) ,
to_unbounded_string ( "./source/might.ads" ) ,
to_unbounded_string ( "./source/ray.ads" ) ,
to_unbounded_string ( "./source/resource.adb" ) ,
to_unbounded_string ( "./source/resource.ads" ) ,
to_unbounded_string ( "./source/skill.adb" ) ,
to_unbounded_string ( "./source/skill.ads" ) ,
to_unbounded_string ( "./source/ui.adb" ) ,
to_unbounded_string ( "./source/ui.ads" ) ,
to_unbounded_string ( "./source/unit.adb" ) ,
to_unbounded_string ( "./source/unit.ads" ) ,
to_unbounded_string ( "./source/world.adb" ) ,
to_unbounded_string ( "./source/world.ads" )
) ;
2024-05-12 20:45:26 -04:00
2024-02-24 14:51:53 -05:00
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2024-02-15 21:03:09 -05:00
2024-02-24 14:51:53 -05:00
begin
2024-02-22 06:16:09 -05:00
2024-05-08 16:45:08 -04:00
dash ;
echo ( comment , "Copyright (C) 2024 -- Ognjen 'xolatile' Milan Robovic" ) ;
echo ( comment , "Version -- 1.0.0" ) ;
echo ( comment , "License -- GNU/GPLv3+" ) ;
echo ( comment , "Xhads is free software, you can redistribute it and modify it under the terms of the GNU General Public License by Free Software Foundation." ) ;
dash ;
2024-03-11 08:42:25 -04:00
2024-05-08 16:45:08 -04:00
initialize ;
2024-03-17 15:15:18 -04:00
2024-05-10 22:09:30 -04:00
ui . active := ui . main ;
2024-02-15 21:03:09 -05:00
ui . configure ;
2024-03-11 14:37:26 -04:00
2024-05-13 09:55:14 -04:00
play ( import_song ( c_string ( "./song/main_menu.ogg" ) ) . index ) ;
2024-03-11 14:37:26 -04:00
2024-03-17 17:52:59 -04:00
attribute . configure ;
skill . configure ;
resource . configure ;
2024-04-26 16:28:01 -04:00
--~might.configure;
--~magic.configure;
2024-05-12 20:15:36 -04:00
material . configure ;
2024-05-11 03:38:33 -04:00
equipment . configure ;
2024-04-25 03:46:07 -04:00
unit . configure ;
construction . configure ;
2024-04-25 00:27:13 -04:00
chad . configure ;
2024-04-25 03:46:07 -04:00
world . configure ;
2024-05-08 15:43:44 -04:00
--~ai.configure;
2024-03-17 17:52:59 -04:00
2024-05-11 05:13:45 -04:00
world . make ( world . grass , 240 , 180 ) ;
2024-02-15 21:03:09 -05:00
2024-05-08 16:45:08 -04:00
dash ;
echo ( success , "Successfully initialized game data, entering main gameplay loop." ) ;
dash ;
2024-03-11 08:42:25 -04:00
2024-05-04 07:22:16 -04:00
for index in view loop
2024-05-08 16:45:08 -04:00
view_icon ( index ) := import_sprite ( "./sprite/ui/icon/" & lowercase ( view ' image ( index ) ) & ".png" , 1 , 1 ) ;
2024-05-03 06:10:13 -04:00
end loop ;
2024-05-10 22:09:30 -04:00
game_title := import_sprite ( "./sprite/game_title.png" , 1 , 1 ) ;
2024-05-03 07:55:17 -04:00
2024-05-10 22:09:30 -04:00
for index in world . biome loop
game_preview ( index ) := import_sprite ( "./sprite/" & lowercase ( world . biome ' image ( index ) ) & "land_preview.png" , 1 , 1 ) ;
end loop ;
2024-05-09 09:11:26 -04:00
2024-03-16 08:08:50 -04:00
------------------------------------------------------------------------------------------
2024-05-08 16:17:47 -04:00
introduction_loop : loop
2024-05-08 16:45:08 -04:00
synchronize ;
2024-02-15 21:03:09 -05:00
--
2024-05-11 03:20:04 -04:00
exit when signal_mode = signal_space or cursor_mode = 2 ;
2024-03-16 08:08:50 -04:00
--
2024-05-10 23:44:09 -04:00
case signal_mode is
when signal_none => null ;
when signal_space => null ;
when others => switch := ( switch + 1 ) mod world . biome_count ;
choose := world . biome ' val ( switch ) ;
end case ;
--
draw ( game_preview ( choose ) , center_x ( game_preview ( choose ) . width * 2 ) , center_y ( game_preview ( choose ) . height * 2 ) , factor => 2 ) ;
draw ( game_title , center_x ( game_title . width * 2 ) , center_y ( game_title . height * 2 ) , factor => 2 ) ;
--
ui . write ( "[-- Please press Spacebar to continue]" , 0 , center_y ( 24 ) , ( 102 , 102 , 102 , 255 ) ) ;
2024-05-08 16:17:47 -04:00
end loop introduction_loop ;
2024-05-11 03:20:04 -04:00
cursor_mode := 0 ;
2024-05-09 11:03:39 -04:00
main_menu_loop : loop
synchronize ;
--
2024-05-11 03:20:04 -04:00
exit when signal_mode = signal_space or cursor_mode = 2 ;
2024-05-09 11:03:39 -04:00
--
2024-05-13 06:41:21 -04:00
--~main_menu;
2024-05-13 04:03:27 -04:00
--
2024-05-13 09:20:16 -04:00
declare source_code_data : string_box_data ;
begin
import_text ( source_code_data , to_string ( source_code ( view_source_code ) ) ) ;
2024-05-13 09:32:49 -04:00
if cursor_mode = 1 then view_source_code := ( view_source_code + 1 ) mod 36 ; cursor_mode := 0 ; wheel := 0.0 ; end if ;
ui . write_ada_code ( source_code_data , 0 , integer ( wheel ) * 30 ) ;
2024-05-13 09:20:16 -04:00
end ;
2024-05-09 11:03:39 -04:00
end loop main_menu_loop ;
2024-05-11 03:20:04 -04:00
cursor_mode := 0 ;
2024-05-11 00:28:50 -04:00
ui . active := ui . style ' val ( faction . enumeration ' pos ( chad . trait ( player . index ) . kind ) + 1 ) ;
2024-05-08 16:17:47 -04:00
gameplay_loop : loop
2024-05-08 16:45:08 -04:00
synchronize ;
2024-03-24 09:14:54 -04:00
--
2024-05-08 16:45:08 -04:00
exit when engine_active = false ;
2024-05-01 14:41:55 -04:00
--
2024-05-11 03:03:28 -04:00
if not view_list ( status_preview_panel ) then
side_panel := 0 ;
else
side_panel := window_width / 4 ;
end if ;
--
preview_width := window_width - side_panel ;
preview_height := window_height - text_box_height ;
text_box_height := 32 ;
--
world . draw ;
--
if view_list ( map_preview_panel ) then
ui . draw_menu ( 0 , 0 , preview_width , preview_height ) ;
end if ;
--
if view_list ( status_preview_panel ) then
ui . draw_tiny_menu ( preview_width , 0 , side_panel , preview_height ) ;
chad . draw_data ( player , preview_width + 32 , 32 ) ;
--~ui.draw_state_box (preview_width + 32, 32);
end if ;
--
if view_list ( text_box_panel ) then
ui . draw_help_box ( 0 , window_height - text_box_height , window_width - icon * ( view ' pos ( view ' last ) + 1 ) , text_box_height ) ;
end if ;
--
for index in view loop
ui . draw_icon ( view_icon ( index ) , view_text ( index ) ,
window_width - icon * ( view ' pos ( view ' last ) + 1 ) + icon * view ' pos ( index ) ,
window_height - text_box_height ,
view_show ( index ) ) ;
end loop ;
--
2024-05-11 03:20:04 -04:00
resource . draw_points ( player . resources , ( preview_width - 4 * icon * resource . count ) / 2 , ( if view_list ( map_preview_panel ) then icon else 0 ) ) ;
2024-05-12 12:33:25 -04:00
ui . draw_fill_bar ( ( preview_width - 320 ) / 2 , 4 * ( if view_list ( map_preview_panel ) then icon else 0 ) , 320 , 0.6 ) ;
2024-05-11 03:03:28 -04:00
--
signal_list ( signal_mode ) . all ;
--
--~magic.menu (0, 0, true);
--~might.menu (0, 0, true);
--
chad . draw_alice ;
--
2024-05-11 05:13:45 -04:00
ui . write ( framerate ' image , window_width - 5 * core . icon + 3 , window_height - 27 ) ;
--
2024-05-11 03:03:28 -04:00
ui . synchronize ;
2024-05-08 16:17:47 -04:00
end loop gameplay_loop ;
2024-02-15 21:03:09 -05:00
2024-05-09 22:23:40 -04:00
--~world.mapshot ("./test.png");
2024-05-09 14:52:19 -04:00
2024-03-16 08:08:50 -04:00
------------------------------------------------------------------------------------------
2024-02-16 09:59:19 -05:00
2024-05-08 16:45:08 -04:00
deinitialize ;
2024-03-17 15:15:18 -04:00
2024-05-08 16:45:08 -04:00
dash ;
2024-03-21 19:03:15 -04:00
2024-02-15 21:03:09 -05:00
end main ;