50 lines
2.8 KiB
Ada
50 lines
2.8 KiB
Ada
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
-- Copyright (c) 2023 - Ognjen 'xolatile' Milan Robovic
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
-- Xabina is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either
|
|
-- version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
-- implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
-- Experimental minimal terminal rogue-like game in Ada programming language. I used to write a lot of Ada programs some time ago, then went in full C and assembly mode, and came
|
|
-- back to Ada, but realized that I keep my folders messy... Since it's bothersome to find my old Ada projects and share them here, I decided that the most easy thing to do is to
|
|
-- write a new program in Ada, a tiny game. Work in progress, it's messy and ugly for now...
|
|
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
with core, screen;
|
|
|
|
package body map is
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
procedure generate is
|
|
begin
|
|
for y in height
|
|
loop
|
|
for x in width
|
|
loop
|
|
map_matrical_data (y, x) := (MAP_WOODEN_FLOOR, map_constant_data (MAP_WOODEN_FLOOR).condition_limit);
|
|
end loop;
|
|
end loop;
|
|
end generate;
|
|
|
|
procedure render is
|
|
symbol : character := ' ';
|
|
colour : character := core.colour.white;
|
|
effect : character := core.effect.normal;
|
|
begin
|
|
for y in screen.height
|
|
loop
|
|
for x in screen.width
|
|
loop
|
|
symbol := map_constant_data (map_matrical_data (map_height (y), map_width (x)).map).symbol;
|
|
colour := map_constant_data (map_matrical_data (map_height (y), map_width (x)).map).colour;
|
|
effect := map_constant_data (map_matrical_data (map_height (y), map_width (x)).map).effect;
|
|
screen.render_character (symbol, colour, effect, y, x);
|
|
end loop;
|
|
end loop;
|
|
end render;
|
|
|
|
------------------------------------------------------------------------------------------
|
|
|
|
end map;
|