umorna/source/engine.c

213 lines
7.2 KiB
C
Raw Normal View History

#include "engine.h"
2023-12-23 10:53:45 -05:00
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <png.h>
int camera_x = 0;
int camera_y = 0;
2023-12-22 02:09:39 -05:00
void view_unit (int race, int unit, int x, int y) {
2023-12-21 23:08:09 -05:00
int u, v, width, height;
u = 0;
v = (unit - race * 18) * BASE_SIZE;
width = BASE_SIZE;
height = BASE_SIZE;
switch (race) {
case orc: render_sprite (orcs, x, y, u, v, width, height); break;
case human: render_sprite (humans, x, y, u, v, width, height); break;
case elf: render_sprite (elves, x, y, u, v, width, height); break;
default: break;
}
}
void view_menu (int menu, int align, int x, int y) {
2023-12-21 23:08:09 -05:00
int item, width, height, aligned_x, aligned_y, u, v;
if (menu_show [menu] == 0) {
return;
}
2023-12-21 23:08:09 -05:00
width = (int) strlen (menu_text [menu] [0]);
height = menu_items [menu];
aligned_x = (align == 0) ? x : ((render_width () - ICON_SIZE * width) / 2);
aligned_y = (align == 0) ? y : ((render_height () - ICON_SIZE * height) / 2);
for (item = 0; item < menu_items [menu]; ++item) {
2023-12-21 23:08:09 -05:00
u = (menu_icon [menu] [item] / 10) * ICON_SIZE;
v = (menu_icon [menu] [item] % 10) * ICON_SIZE;
render_sprite (ui, aligned_x, aligned_y + item * ICON_SIZE, u, v, ICON_SIZE, ICON_SIZE);
render_string (menu_text [menu] [item], aligned_x + ICON_SIZE, aligned_y + item * ICON_SIZE);
}
}
2023-12-21 23:08:09 -05:00
void view_hud (int alpha, int width, int height, int x, int y) {
int i, j, u, v;
u = width % ICON_SIZE;
v = height % ICON_SIZE;
width /= ICON_SIZE;
height /= ICON_SIZE;
if (alpha == 0) {
for (i = 0; i < width - 1; ++i) {
for (j = 0; j < height - 1; ++j) {
render_sprite (neonui, x + i * ICON_SIZE + ICON_SIZE / 2, y + j * ICON_SIZE + ICON_SIZE / 2, 0, 0, ICON_SIZE, ICON_SIZE);
}
render_sprite (neonui, x + i * ICON_SIZE + ICON_SIZE / 2, y + height * ICON_SIZE + ICON_SIZE / 2, 0, 0, u, ICON_SIZE);
}
render_sprite (neonui, x + width * ICON_SIZE + ICON_SIZE / 2, y + height * ICON_SIZE + ICON_SIZE / 2, 0, 0, ICON_SIZE, v);
}
for (i = 1; i < width; ++i) {
render_sprite (neonui, x + i * ICON_SIZE, y, 560, 0, ICON_SIZE, ICON_SIZE);
render_sprite (neonui, x + i * ICON_SIZE, y + ICON_SIZE * (height - 1) + v, 560, 0, ICON_SIZE, ICON_SIZE);
}
for (i = 1; i < height - 1; ++i) {
render_sprite (neonui, x, y + i * ICON_SIZE, 256, 128, ICON_SIZE, ICON_SIZE);
render_sprite (neonui, x + ICON_SIZE * (width - 1) + u, y + i * ICON_SIZE + v, 256, 128, ICON_SIZE, ICON_SIZE);
}
render_sprite (neonui, x, y, 288, 0, 3 * ICON_SIZE, 3 * ICON_SIZE);
render_sprite (neonui, x + ICON_SIZE * (width - 3) + u, y, 384, 0, 3 * ICON_SIZE, 3 * ICON_SIZE);
render_sprite (neonui, x, y + ICON_SIZE * (height - 3) + v, 288, 96, 3 * ICON_SIZE, 3 * ICON_SIZE);
render_sprite (neonui, x + ICON_SIZE * (width - 3) + u, y + ICON_SIZE * (height - 3) + v, 384, 96, 3 * ICON_SIZE, 3 * ICON_SIZE);
}
void view_neon_menu (int menu, int align, int x, int y) {
2023-12-21 23:22:17 -05:00
int item, aligned_x, aligned_y, i, j;
2023-12-21 20:19:30 -05:00
if (menu_show [menu] == 0) {
return;
}
2023-12-21 23:22:17 -05:00
i = (int) strlen (menu_text [menu] [0]) + 4;
j = menu_items [menu] + 4;
2023-12-21 23:22:17 -05:00
aligned_x = (align == 0) ? x : ((render_width () - ICON_SIZE * i) / 2);
aligned_y = (align == 0) ? y : ((render_height () - ICON_SIZE * j) / 2);
2023-12-21 23:22:17 -05:00
view_hud (menu_alpha [menu], i * ICON_SIZE, j * ICON_SIZE, aligned_x, aligned_y);
aligned_x += 2 * ICON_SIZE;
aligned_y += 2 * ICON_SIZE;
for (item = 0; item < menu_items [menu]; ++item) {
2023-12-21 23:08:09 -05:00
i = (menu_icon [menu] [item] / 10) * ICON_SIZE;
j = (menu_icon [menu] [item] % 10) * ICON_SIZE;
2023-12-21 23:08:09 -05:00
render_sprite (ui, aligned_x, aligned_y + item * ICON_SIZE, i, j, ICON_SIZE, ICON_SIZE);
render_string (menu_text [menu] [item], aligned_x + ICON_SIZE, aligned_y + item * ICON_SIZE);
}
}
2023-12-22 02:09:39 -05:00
void view_map (int offset_x, int offset_y) {
2023-12-23 10:53:45 -05:00
int x, y, index;
2023-12-23 10:53:45 -05:00
for (x = 0; (x < (render_width () - SIDE_SIZE) / (BASE_SIZE * render_zoom)) && (x < CHAD_WORLD_WIDTH); ++x) {
for (y = 0; (y < render_height () / (BASE_SIZE * render_zoom)) && (y < CHAD_WORLD_HEIGHT); ++y) {
2023-12-22 02:09:39 -05:00
render_sprite (ashlands, (int) (x * BASE_SIZE * render_zoom), (int) (y * BASE_SIZE * render_zoom), 0,
2023-12-23 10:53:45 -05:00
chad_world [0] [(offset_x + x) * CHAD_WORLD_HEIGHT + offset_y + y] * BASE_SIZE, BASE_SIZE, BASE_SIZE);
}
}
2023-12-23 10:53:45 -05:00
for (index = 0; index < CHAD_WORLD_MODEL; ++index) {
if (chad_world_model_x [0] [index] < offset_x) continue;
if (chad_world_model_y [0] [index] < offset_y) continue;
if (chad_world_model_x [0] [index] > (render_width () - SIDE_SIZE) / (BASE_SIZE * render_zoom)) continue;
if (chad_world_model_y [0] [index] > render_height () / (BASE_SIZE * render_zoom)) continue;
x = (int) ((chad_world_model_x [0] [index] - offset_x) * BASE_SIZE * render_zoom);
y = (int) ((chad_world_model_y [0] [index] - offset_y) * BASE_SIZE * render_zoom);
render_sprite (model_1_1, x, y, 0, chad_world_model [0] [index] * BASE_SIZE, BASE_SIZE, BASE_SIZE);
}
}
2023-12-21 20:19:30 -05:00
void view_base_1 (int index, int x, int y) {
render_sprite (base_1, x, y, 0, index * 7 * BASE_SIZE, 10 * BASE_SIZE, 7 * BASE_SIZE);
}
void view_base_2 (int index, int x, int y) {
render_sprite (base_2, x, y, 0, index * 10 * BASE_SIZE, 15 * BASE_SIZE, 10 * BASE_SIZE);
}
2023-12-21 23:08:09 -05:00
void view_side_hud (void) {
return;
}
2023-12-23 10:53:45 -05:00
/*static void dump_block (unsigned int * * * pixels, unsigned int * source, int index, int x, int y) {
int i, j;
for (i = 0; i < BASE_SIZE; ++i) {
for (j = 0; j < BASE_SIZE; ++j) {
pixels [x] [y] [i * BASE_SIZE + j] = source [index * BASE_SIZE * BASE_SIZE + i * BASE_SIZE + j];
}
}
}
static void dump_world_screenshot (void) {
unsigned int * * * screenshot;
unsigned int * a;
unsigned int map [28 * BASE_SIZE * 12 * BASE_SIZE];
int i, j, k;
png_image input = { 0 };
png_image output = { 0 };
input.version = PNG_IMAGE_VERSION;
png_image_begin_read_from_file (& input, "sprite/ashlands.png");
input.format = PNG_FORMAT_RGBA;
png_image_finish_read (& input, NULL, map, 0, NULL);
png_image_free (& input);
a = calloc (CHAD_WORLD_SIZE * CHAD_WORLD_SIZE * BASE_SIZE * BASE_SIZE, sizeof (* a));
screenshot = calloc (CHAD_WORLD_SIZE, sizeof (* screenshot));
for (i = 0; i < CHAD_WORLD_SIZE; ++i) {
screenshot [i] = calloc (CHAD_WORLD_SIZE, sizeof (* * screenshot));
for (j = 0; j < CHAD_WORLD_SIZE; ++j) {
screenshot [i] [j] = calloc (BASE_SIZE * BASE_SIZE, sizeof (* * * screenshot));
}
}
for (i = 0; i < CHAD_WORLD_SIZE; ++i) {
for (j = 0; j < CHAD_WORLD_SIZE; ++j) {
dump_block (screenshot, map, chad_world [0] [i] [j], i, j);
}
}
for (i = 0; i < CHAD_WORLD_SIZE; ++i) {
for (j = 0; j < CHAD_WORLD_SIZE; ++j) {
for (k = 0; k < BASE_SIZE * BASE_SIZE; ++k) {
a [(i * CHAD_WORLD_SIZE + j) * BASE_SIZE * BASE_SIZE + k] = screenshot [i] [j] [k];
}
}
}
output.version = PNG_IMAGE_VERSION;
output.format = PNG_FORMAT_RGBA;
output.width = (unsigned int) (CHAD_WORLD_SIZE * BASE_SIZE);
output.height = (unsigned int) (CHAD_WORLD_SIZE * BASE_SIZE);
if (png_image_write_to_file (& output, "a.png", 0, a, 0, NULL) == 0) write (1, "\033[1;31mFailed to export render as PNG image!\033[0m\n", 49);
png_image_free (& output);
free (screenshot);
free (a);
}*/