Make camera zoom fps independent
parent
276f85dee8
commit
01315fb75d
|
@ -28,7 +28,6 @@ void platform_init() {
|
||||||
InitWindow(screenWidth, screenHeight, "eco2d");
|
InitWindow(screenWidth, screenHeight, "eco2d");
|
||||||
SetWindowState(FLAG_WINDOW_UNDECORATED|FLAG_WINDOW_MAXIMIZED|FLAG_WINDOW_RESIZABLE|FLAG_MSAA_4X_HINT);
|
SetWindowState(FLAG_WINDOW_UNDECORATED|FLAG_WINDOW_MAXIMIZED|FLAG_WINDOW_RESIZABLE|FLAG_MSAA_4X_HINT);
|
||||||
|
|
||||||
//SetTargetFPS(144);
|
|
||||||
screenWidth = GetScreenWidth();
|
screenWidth = GetScreenWidth();
|
||||||
screenHeight = GetScreenHeight();
|
screenHeight = GetScreenHeight();
|
||||||
renderer_init();
|
renderer_init();
|
||||||
|
|
|
@ -82,7 +82,7 @@ void DEBUG_draw_entities_3d(uint64_t key, entity_view * data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void renderer_draw_3d(void) {
|
void renderer_draw_3d(void) {
|
||||||
cam_zoom = zpl_min(zpl_lerp(cam_zoom, target_zoom, 0.18), 9.98f);
|
cam_zoom = zpl_min(zpl_lerp(cam_zoom, target_zoom, GetFrameTime()*2.18f), 9.98f);
|
||||||
camera_update();
|
camera_update();
|
||||||
|
|
||||||
camera game_camera_3d = camera_get();
|
camera game_camera_3d = camera_get();
|
||||||
|
|
|
@ -1,191 +1,191 @@
|
||||||
static Camera2D render_camera;
|
static Camera2D render_camera;
|
||||||
static float zoom_overlay_tran = 0.0f;
|
static float zoom_overlay_tran = 0.0f;
|
||||||
|
|
||||||
#define CAM_OVERLAY_ZOOM_LEVEL 0.80f
|
#define CAM_OVERLAY_ZOOM_LEVEL 0.80f
|
||||||
#define ALPHA(x) ColorAlpha(x, data->tran_time)
|
#define ALPHA(x) ColorAlpha(x, data->tran_time)
|
||||||
|
|
||||||
float zpl_lerp(float,float,float);
|
float zpl_lerp(float,float,float);
|
||||||
float zpl_to_degrees(float);
|
float zpl_to_degrees(float);
|
||||||
|
|
||||||
void DEBUG_draw_ground(uint64_t key, entity_view * data) {
|
void DEBUG_draw_ground(uint64_t key, entity_view * data) {
|
||||||
(void)key;
|
(void)key;
|
||||||
switch (data->kind) {
|
switch (data->kind) {
|
||||||
case EKIND_CHUNK: {
|
case EKIND_CHUNK: {
|
||||||
world_view *view = game_world_view_get_active();
|
world_view *view = game_world_view_get_active();
|
||||||
int32_t size = view->chunk_size * WORLD_BLOCK_SIZE;
|
int32_t size = view->chunk_size * WORLD_BLOCK_SIZE;
|
||||||
int16_t offset = 0;
|
int16_t offset = 0;
|
||||||
|
|
||||||
float x = data->x * size + offset;
|
float x = data->x * size + offset;
|
||||||
float y = data->y * size + offset;
|
float y = data->y * size + offset;
|
||||||
|
|
||||||
RenderTexture2D tex = GetChunkTexture(key);
|
RenderTexture2D tex = GetChunkTexture(key);
|
||||||
DrawTextureRec(tex.texture, (Rectangle){0, 0, tex.texture.width, -tex.texture.height}, (Vector2){x, y}, ColorAlpha(WHITE, data->tran_time));
|
DrawTextureRec(tex.texture, (Rectangle){0, 0, tex.texture.width, -tex.texture.height}, (Vector2){x, y}, ColorAlpha(WHITE, data->tran_time));
|
||||||
|
|
||||||
if (zoom_overlay_tran > 0.02f) {
|
if (zoom_overlay_tran > 0.02f) {
|
||||||
DrawRectangleEco(x, y, size-offset, size-offset, ColorAlpha(ColorFromHSV(data->color, 0.13f, 0.89f), data->tran_time*zoom_overlay_tran*0.75f));
|
DrawRectangleEco(x, y, size-offset, size-offset, ColorAlpha(ColorFromHSV(data->color, 0.13f, 0.89f), data->tran_time*zoom_overlay_tran*0.75f));
|
||||||
|
|
||||||
DrawTextEco(TextFormat("%d %d", (int)data->x, (int)data->y), (int16_t)x+15, (int16_t)y+15, 200 , ColorAlpha(BLACK, data->tran_time*zoom_overlay_tran), 0.0);
|
DrawTextEco(TextFormat("%d %d", (int)data->x, (int)data->y), (int16_t)x+15, (int16_t)y+15, 200 , ColorAlpha(BLACK, data->tran_time*zoom_overlay_tran), 0.0);
|
||||||
|
|
||||||
}
|
}
|
||||||
}break;
|
}break;
|
||||||
|
|
||||||
default:break;
|
default:break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extern bool inv_is_open;
|
extern bool inv_is_open;
|
||||||
|
|
||||||
void DEBUG_draw_entities(uint64_t key, entity_view * data) {
|
void DEBUG_draw_entities(uint64_t key, entity_view * data) {
|
||||||
uint16_t size = 16;
|
uint16_t size = 16;
|
||||||
uint16_t font_size = (uint16_t)lerp(4.0f, 32.0f, 0.5f/(float)render_camera.zoom);
|
uint16_t font_size = (uint16_t)lerp(4.0f, 32.0f, 0.5f/(float)render_camera.zoom);
|
||||||
float font_spacing = 1.1f;
|
float font_spacing = 1.1f;
|
||||||
float title_bg_offset = 4;
|
float title_bg_offset = 4;
|
||||||
float fixed_title_offset = 8;
|
float fixed_title_offset = 8;
|
||||||
|
|
||||||
switch (data->kind) {
|
switch (data->kind) {
|
||||||
case EKIND_DEMO_NPC: {
|
case EKIND_DEMO_NPC: {
|
||||||
float x = data->x;
|
float x = data->x;
|
||||||
float y = data->y;
|
float y = data->y;
|
||||||
DrawCircleEco(x, y, size, ColorAlpha(BLUE, data->tran_time));
|
DrawCircleEco(x, y, size, ColorAlpha(BLUE, data->tran_time));
|
||||||
}break;
|
}break;
|
||||||
case EKIND_PLAYER: {
|
case EKIND_PLAYER: {
|
||||||
float x = data->x;
|
float x = data->x;
|
||||||
float y = data->y;
|
float y = data->y;
|
||||||
float health = (data->hp / data->max_hp);
|
float health = (data->hp / data->max_hp);
|
||||||
const char *title = TextFormat("Player %d", key);
|
const char *title = TextFormat("Player %d", key);
|
||||||
int title_w = MeasureTextEco(title, font_size, font_spacing);
|
int title_w = MeasureTextEco(title, font_size, font_spacing);
|
||||||
DrawRectangleEco(x-title_w/2-title_bg_offset/2, y-size-font_size-fixed_title_offset, title_w+title_bg_offset, font_size, ColorAlpha(BLACK, data->tran_time));
|
DrawRectangleEco(x-title_w/2-title_bg_offset/2, y-size-font_size-fixed_title_offset, title_w+title_bg_offset, font_size, ColorAlpha(BLACK, data->tran_time));
|
||||||
DrawRectangleEco(x-title_w/2-title_bg_offset/2, y-size-fixed_title_offset, title_w*health+title_bg_offset, font_size*0.2f, ColorAlpha(RED, data->tran_time));
|
DrawRectangleEco(x-title_w/2-title_bg_offset/2, y-size-fixed_title_offset, title_w*health+title_bg_offset, font_size*0.2f, ColorAlpha(RED, data->tran_time));
|
||||||
DrawTextEco(title, x-title_w/2, y-size-font_size-fixed_title_offset, font_size, ColorAlpha(RAYWHITE, data->tran_time), font_spacing);
|
DrawTextEco(title, x-title_w/2, y-size-font_size-fixed_title_offset, font_size, ColorAlpha(RAYWHITE, data->tran_time), font_spacing);
|
||||||
DrawCircleEco(x, y, size, ColorAlpha(YELLOW, data->tran_time));
|
DrawCircleEco(x, y, size, ColorAlpha(YELLOW, data->tran_time));
|
||||||
|
|
||||||
if (data->has_items && !data->inside_vehicle) {
|
if (data->has_items && !data->inside_vehicle) {
|
||||||
float ix = data->x;
|
float ix = data->x;
|
||||||
float iy = data->y;
|
float iy = data->y;
|
||||||
if (data->items[data->selected_item].quantity > 0) {
|
if (data->items[data->selected_item].quantity > 0) {
|
||||||
item_kind it_kind = data->items[data->selected_item].kind;
|
item_kind it_kind = data->items[data->selected_item].kind;
|
||||||
uint32_t qty = data->items[data->selected_item].quantity;
|
uint32_t qty = data->items[data->selected_item].quantity;
|
||||||
uint16_t it_id = item_find(it_kind);
|
uint16_t it_id = item_find(it_kind);
|
||||||
DrawTexturePro(GetSpriteTexture2D(assets_find(item_get_asset(it_id))), ASSET_SRC_RECT(), ((Rectangle){ix, iy, 32, 32}), (Vector2){0.5f,0.5f}, 0.0f, ALPHA(WHITE));
|
DrawTexturePro(GetSpriteTexture2D(assets_find(item_get_asset(it_id))), ASSET_SRC_RECT(), ((Rectangle){ix, iy, 32, 32}), (Vector2){0.5f,0.5f}, 0.0f, ALPHA(WHITE));
|
||||||
|
|
||||||
if (!inv_is_open)
|
if (!inv_is_open)
|
||||||
DrawTextEco(zpl_bprintf("%d", qty), ix+24, iy+24, 8, RAYWHITE, 0.0f);
|
DrawTextEco(zpl_bprintf("%d", qty), ix+24, iy+24, 8, RAYWHITE, 0.0f);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}break;
|
}break;
|
||||||
case EKIND_MACRO_BOT: {
|
case EKIND_MACRO_BOT: {
|
||||||
float x = data->x;
|
float x = data->x;
|
||||||
float y = data->y;
|
float y = data->y;
|
||||||
const char *title = TextFormat("Bot %d", key);
|
const char *title = TextFormat("Bot %d", key);
|
||||||
int title_w = MeasureTextEco(title, font_size, font_spacing);
|
int title_w = MeasureTextEco(title, font_size, font_spacing);
|
||||||
DrawRectangleEco(x-title_w/2-title_bg_offset/2, y-size-font_size-fixed_title_offset, title_w+title_bg_offset, font_size, ColorAlpha(GRAY, data->tran_time));
|
DrawRectangleEco(x-title_w/2-title_bg_offset/2, y-size-font_size-fixed_title_offset, title_w+title_bg_offset, font_size, ColorAlpha(GRAY, data->tran_time));
|
||||||
DrawTextEco(title, x-title_w/2, y-size-font_size-fixed_title_offset, font_size, ColorAlpha(BLACK, data->tran_time), font_spacing);
|
DrawTextEco(title, x-title_w/2, y-size-font_size-fixed_title_offset, font_size, ColorAlpha(BLACK, data->tran_time), font_spacing);
|
||||||
DrawCircleEco(x, y, size, ColorAlpha(PURPLE, data->tran_time));
|
DrawCircleEco(x, y, size, ColorAlpha(PURPLE, data->tran_time));
|
||||||
}break;
|
}break;
|
||||||
case EKIND_ITEM: {
|
case EKIND_ITEM: {
|
||||||
float x = data->x - 32.f;
|
float x = data->x - 32.f;
|
||||||
float y = data->y - 32.f;
|
float y = data->y - 32.f;
|
||||||
DrawTexturePro(GetSpriteTexture2D(assets_find(data->asset)), ASSET_SRC_RECT(), ASSET_DST_RECT(x,y), (Vector2){0.5f,0.5f}, 0.0f, ALPHA(WHITE));
|
DrawTexturePro(GetSpriteTexture2D(assets_find(data->asset)), ASSET_SRC_RECT(), ASSET_DST_RECT(x,y), (Vector2){0.5f,0.5f}, 0.0f, ALPHA(WHITE));
|
||||||
DrawTextEco(zpl_bprintf("%d", data->quantity), x, y, 10, ALPHA(RAYWHITE), 0.0f);
|
DrawTextEco(zpl_bprintf("%d", data->quantity), x, y, 10, ALPHA(RAYWHITE), 0.0f);
|
||||||
}break;
|
}break;
|
||||||
default:break;
|
default:break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void DEBUG_draw_entities_low(uint64_t key, entity_view * data) {
|
void DEBUG_draw_entities_low(uint64_t key, entity_view * data) {
|
||||||
(void)key;
|
(void)key;
|
||||||
|
|
||||||
switch (data->kind) {
|
switch (data->kind) {
|
||||||
case EKIND_VEHICLE: {
|
case EKIND_VEHICLE: {
|
||||||
float x = data->x;
|
float x = data->x;
|
||||||
float y = data->y;
|
float y = data->y;
|
||||||
float const w = 80;
|
float const w = 80;
|
||||||
float const h = 50;
|
float const h = 50;
|
||||||
DrawRectanglePro((Rectangle){x,y,w,h}, (Vector2){w/2.0f,h/2.0f}, zpl_to_degrees(data->heading), ColorAlpha(RED, data->tran_time));
|
DrawRectanglePro((Rectangle){x,y,w,h}, (Vector2){w/2.0f,h/2.0f}, zpl_to_degrees(data->heading), ColorAlpha(RED, data->tran_time));
|
||||||
}break;
|
}break;
|
||||||
default:break;
|
default:break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void renderer_draw_v0(void) {
|
void renderer_draw_v0(void) {
|
||||||
render_camera.zoom = zpl_lerp(render_camera.zoom, target_zoom, 0.18);
|
render_camera.zoom = zpl_lerp(render_camera.zoom, target_zoom, GetFrameTime()*2.9978f);
|
||||||
camera_update();
|
camera_update();
|
||||||
|
|
||||||
camera game_camera = camera_get();
|
camera game_camera = camera_get();
|
||||||
render_camera.target = (Vector2){game_camera.x, game_camera.y};
|
render_camera.target = (Vector2){game_camera.x, game_camera.y};
|
||||||
zoom_overlay_tran = zpl_lerp(zoom_overlay_tran, (target_zoom <= CAM_OVERLAY_ZOOM_LEVEL) ? 1.0f : 0.0f, GetFrameTime()*2.0f);
|
zoom_overlay_tran = zpl_lerp(zoom_overlay_tran, (target_zoom <= CAM_OVERLAY_ZOOM_LEVEL) ? 1.0f : 0.0f, GetFrameTime()*2.0f);
|
||||||
|
|
||||||
|
|
||||||
ClearBackground(GetColor(0x222034));
|
ClearBackground(GetColor(0x222034));
|
||||||
BeginMode2D(render_camera);
|
BeginMode2D(render_camera);
|
||||||
game_world_view_active_entity_map(DEBUG_draw_ground);
|
game_world_view_active_entity_map(DEBUG_draw_ground);
|
||||||
game_world_view_active_entity_map(DEBUG_draw_entities_low);
|
game_world_view_active_entity_map(DEBUG_draw_entities_low);
|
||||||
game_world_view_active_entity_map(DEBUG_draw_entities);
|
game_world_view_active_entity_map(DEBUG_draw_entities);
|
||||||
EndMode2D();
|
EndMode2D();
|
||||||
}
|
}
|
||||||
|
|
||||||
void renderer_init_v0(void) {
|
void renderer_init_v0(void) {
|
||||||
render_camera.target = (Vector2){0.0f,0.0f};
|
render_camera.target = (Vector2){0.0f,0.0f};
|
||||||
render_camera.offset = (Vector2){screenWidth >> 1, screenHeight >> 1};
|
render_camera.offset = (Vector2){screenWidth >> 1, screenHeight >> 1};
|
||||||
render_camera.rotation = 0.0f;
|
render_camera.rotation = 0.0f;
|
||||||
render_camera.zoom = 1.5f;
|
render_camera.zoom = 1.5f;
|
||||||
|
|
||||||
// NOTE(zaklaus): Paint the screen before we load the game
|
// NOTE(zaklaus): Paint the screen before we load the game
|
||||||
// TODO(zaklaus): Render a cool loading screen background maybe? :wink: :wink:
|
// TODO(zaklaus): Render a cool loading screen background maybe? :wink: :wink:
|
||||||
|
|
||||||
BeginDrawing();
|
BeginDrawing();
|
||||||
ClearBackground(GetColor(0x222034));
|
ClearBackground(GetColor(0x222034));
|
||||||
|
|
||||||
char const *loading_text = "zpl.eco2d is loading...";
|
char const *loading_text = "zpl.eco2d is loading...";
|
||||||
int text_w = MeasureText(loading_text, 120);
|
int text_w = MeasureText(loading_text, 120);
|
||||||
DrawText(loading_text, GetScreenWidth()-text_w-15, GetScreenHeight()-135, 120, RAYWHITE);
|
DrawText(loading_text, GetScreenWidth()-text_w-15, GetScreenHeight()-135, 120, RAYWHITE);
|
||||||
EndDrawing();
|
EndDrawing();
|
||||||
|
|
||||||
blocks_setup();
|
blocks_setup();
|
||||||
assets_setup();
|
assets_setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
void renderer_shutdown_v0(void) {
|
void renderer_shutdown_v0(void) {
|
||||||
blocks_destroy();
|
blocks_destroy();
|
||||||
assets_destroy();
|
assets_destroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
void renderer_debug_draw_v0(void) {
|
void renderer_debug_draw_v0(void) {
|
||||||
BeginMode2D(render_camera);
|
BeginMode2D(render_camera);
|
||||||
debug_draw_queue *que = debug_draw_samples();
|
debug_draw_queue *que = debug_draw_samples();
|
||||||
|
|
||||||
for (size_t i = 0; i < que->num_entries; i += 1) {
|
for (size_t i = 0; i < que->num_entries; i += 1) {
|
||||||
debug_draw_entry *e = &que->entries[i];
|
debug_draw_entry *e = &que->entries[i];
|
||||||
Color color = GetColor(e->color);
|
Color color = GetColor(e->color);
|
||||||
|
|
||||||
switch (e->kind) {
|
switch (e->kind) {
|
||||||
case DDRAW_LINE: {
|
case DDRAW_LINE: {
|
||||||
float x = e->a.x;
|
float x = e->a.x;
|
||||||
float y = e->a.y;
|
float y = e->a.y;
|
||||||
float x2 = e->b.x;
|
float x2 = e->b.x;
|
||||||
float y2 = e->b.y;
|
float y2 = e->b.y;
|
||||||
DrawLineV((Vector2){x, y}, (Vector2){x2, y2}, color);
|
DrawLineV((Vector2){x, y}, (Vector2){x2, y2}, color);
|
||||||
}break;
|
}break;
|
||||||
|
|
||||||
case DDRAW_CIRCLE:{
|
case DDRAW_CIRCLE:{
|
||||||
float x = e->a.x;
|
float x = e->a.x;
|
||||||
float y = e->a.y;
|
float y = e->a.y;
|
||||||
DrawCircleLinesEco(x, y, e->radius, color);
|
DrawCircleLinesEco(x, y, e->radius, color);
|
||||||
}break;
|
}break;
|
||||||
|
|
||||||
case DDRAW_RECT:{
|
case DDRAW_RECT:{
|
||||||
float x = e->bmin.x;
|
float x = e->bmin.x;
|
||||||
float y = e->bmin.y;
|
float y = e->bmin.y;
|
||||||
float w = e->bmax.x - e->bmin.x;
|
float w = e->bmax.x - e->bmin.x;
|
||||||
float h = e->bmax.y - e->bmin.y;
|
float h = e->bmax.y - e->bmin.y;
|
||||||
DrawRectangleLinesEco(x, y, w, h, color);
|
DrawRectangleLinesEco(x, y, w, h, color);
|
||||||
}break;
|
}break;
|
||||||
|
|
||||||
default: {
|
default: {
|
||||||
|
|
||||||
}break;
|
}break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
EndMode2D();
|
EndMode2D();
|
||||||
}
|
}
|
Loading…
Reference in New Issue