Files
ld58/code/first.c

160 lines
4.6 KiB
C
Raw Normal View History

#include <stdio.h>
#include <stdbool.h>
#include <SDL3/SDL.h>
#include "core/core.h"
2025-10-04 14:57:09 +01:00
#include "core/types.h"
2025-10-05 00:25:37 +01:00
#include "game/npc.h"
#include "os/core.h"
#include "vulkan/core.h"
2025-10-04 15:53:55 +01:00
#include "game/impl/player.c"
2025-10-05 00:25:37 +01:00
#include "game/world.h"
#include "game/impl/npc.c"
#include "game/testnavmesh.h"
2025-10-04 15:53:55 +01:00
int main(int argc, char **argv)
{
(void)argc;
(void)argv;
if (!SDL_Init(SDL_INIT_VIDEO))
{
printf("[Error] :: Failed to initialise SDL3 (%s)\n", SDL_GetError());
return 1;
}
SDL_Window *window = SDL_CreateWindow("Ludum", 1280, 720, SDL_WINDOW_HIGH_PIXEL_DENSITY);
2025-10-04 15:53:55 +01:00
if (!window)
{
printf("[Error] :: Failed to create window (%s)\n", SDL_GetError());
return 1;
}
Vk_Setup(window);
bool running = true;
2025-10-04 15:53:55 +01:00
Player player;
player.pos.x = 0;
player.pos.y = 0;
2025-10-05 00:25:37 +01:00
World world = {
.npcCount = 2,
.npcs = {
{
.collision = {{10, 10}, {10, 10}},
.name = S("Matt"),
.mode = NPC_ACTION_WAITING,
.waitTime = 0,
.maxWaitTime = 5,
.currentNavNode = 87
},{
.collision = {{15, 15}, {10, 10}},
.name = S("James"),
.mode = NPC_ACTION_WAITING,
.waitTime = 0,
.maxWaitTime = 10,
.currentNavNode = 0
}
},
.navMesh = TestNavMesh,
.npcPOI = {100}
};
2025-10-04 15:53:55 +01:00
while (running)
{
SDL_Event e;
2025-10-04 15:53:55 +01:00
while (SDL_PollEvent(&e))
{
PlayerUpdate(&e, &player);
if (e.type == SDL_EVENT_QUIT)
{
running = false;
}
}
2025-10-05 00:25:37 +01:00
UpdateNPCs(1.0/60.0, &world);
int w, h;
SDL_GetWindowSizeInPixels(window, &w, &h);
Vk_Frame *frame = Vk_FrameBegin(window);
VkCommandBuffer cmd = frame->cmd;
2025-10-04 15:53:55 +01:00
VkImageMemoryBarrier2 colour_optimal = {0};
colour_optimal.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER_2;
colour_optimal.srcStageMask = VK_PIPELINE_STAGE_2_NONE;
colour_optimal.srcAccessMask = VK_ACCESS_2_NONE;
2025-10-04 15:53:55 +01:00
colour_optimal.dstStageMask = VK_PIPELINE_STAGE_2_COLOR_ATTACHMENT_OUTPUT_BIT;
colour_optimal.dstAccessMask = VK_ACCESS_2_COLOR_ATTACHMENT_WRITE_BIT;
2025-10-04 15:53:55 +01:00
colour_optimal.oldLayout = VK_IMAGE_LAYOUT_UNDEFINED;
colour_optimal.newLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
colour_optimal.image = vk.swapchain.images[frame->image];
colour_optimal.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
colour_optimal.subresourceRange.layerCount = 1;
colour_optimal.subresourceRange.levelCount = 1;
2025-10-04 15:53:55 +01:00
VkDependencyInfo colour_barrier = {0};
colour_barrier.sType = VK_STRUCTURE_TYPE_DEPENDENCY_INFO;
colour_barrier.imageMemoryBarrierCount = 1;
2025-10-04 15:53:55 +01:00
colour_barrier.pImageMemoryBarriers = &colour_optimal;
vk.CmdPipelineBarrier2(cmd, &colour_barrier);
VkClearValue clear_colour;
clear_colour.color.float32[0] = 1.0f;
clear_colour.color.float32[1] = 0.0f;
clear_colour.color.float32[2] = 0.0f;
clear_colour.color.float32[3] = 1.0f;
2025-10-04 15:53:55 +01:00
VkRenderingAttachmentInfo colour_attachment = {0};
colour_attachment.sType = VK_STRUCTURE_TYPE_RENDERING_ATTACHMENT_INFO;
colour_attachment.imageView = vk.swapchain.views[frame->image];
colour_attachment.imageLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
2025-10-04 15:53:55 +01:00
colour_attachment.loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR;
colour_attachment.storeOp = VK_ATTACHMENT_STORE_OP_STORE;
colour_attachment.clearValue = clear_colour;
VkRenderingInfo rendering_info = {0};
rendering_info.sType = VK_STRUCTURE_TYPE_RENDERING_INFO;
rendering_info.renderArea = (VkRect2D){0, 0, w, h};
rendering_info.layerCount = 1;
rendering_info.colorAttachmentCount = 1;
2025-10-04 15:53:55 +01:00
rendering_info.pColorAttachments = &colour_attachment;
vk.CmdBeginRendering(cmd, &rendering_info);
vk.CmdEndRendering(cmd);
2025-10-04 15:53:55 +01:00
VkImageMemoryBarrier2 present_src = {0};
present_src.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER_2;
present_src.srcStageMask = VK_PIPELINE_STAGE_2_COLOR_ATTACHMENT_OUTPUT_BIT;
present_src.srcAccessMask = VK_ACCESS_2_COLOR_ATTACHMENT_WRITE_BIT;
2025-10-04 15:53:55 +01:00
present_src.dstStageMask = VK_PIPELINE_STAGE_2_NONE;
present_src.dstAccessMask = VK_ACCESS_2_NONE;
2025-10-04 15:53:55 +01:00
present_src.oldLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
present_src.newLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR;
present_src.image = vk.swapchain.images[frame->image];
present_src.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
present_src.subresourceRange.layerCount = 1;
present_src.subresourceRange.levelCount = 1;
2025-10-04 15:53:55 +01:00
VkDependencyInfo to_present = {0};
to_present.sType = VK_STRUCTURE_TYPE_DEPENDENCY_INFO;
to_present.imageMemoryBarrierCount = 1;
2025-10-04 15:53:55 +01:00
to_present.pImageMemoryBarriers = &present_src;
vk.CmdPipelineBarrier2(cmd, &to_present);
Vk_FrameEnd();
}
SDL_DestroyWindow(window);
SDL_Quit();
return 0;
}
#include "core/core.c"
#include "os/core.c"
#include "vulkan/core.c"