Correctly factor web build, beginnings of UI system

main
Cameron Murphy Reikes 2 years ago
parent 4a4642e97d
commit 7593ebe7c2

@ -0,0 +1,19 @@
call run_codegen.bat || goto :error
copy marketing_page\favicon.ico %OUTPUT_FOLDER%\favicon.ico
copy main.c %OUTPUT_FOLDER%\main.c || goto :error
@echo on
emcc ^
-sEXPORTED_FUNCTIONS=_main,_end_text_input,_stop_controlling_input,_start_controlling_input,_read_from_save_data,_dump_save_data,_is_receiving_text_input^
-sEXPORTED_RUNTIME_METHODS=ccall,cwrap^
-s ALLOW_MEMORY_GROWTH -s TOTAL_STACK=5242880^
%FLAGS%^
-Ithirdparty -Igen main.c -o %OUTPUT_FOLDER%\index.html --preload-file assets --shell-file web_template.html || goto :error
@echo off
goto :EOF
:error
echo Failed to build
exit /B %ERRORLEVEL%

@ -3,19 +3,11 @@
rmdir /S /q build_web rmdir /S /q build_web
mkdir build_web mkdir build_web
call run_codegen.bat || goto :error
@REM set FLAGS=-fsanitize=undefined -fsanitize=address @REM set FLAGS=-fsanitize=undefined -fsanitize=address
@REM GO FUCK YOURSELF set FLAGS=-O0 --source-map-base http://localhost:8000/ -g3 -gdwarf -DDEVTOOLS
set FLAGS=-s TOTAL_STACK=5242880 set OUTPUT_FOLDER=build_web
copy marketing_page\favicon.ico build_web\favicon.ico
copy main.c build_web\main.c || goto :error
@echo on call build_web_common.bat || goto :error
@REM emcc -sEXPORTED_FUNCTIONS=_main,_end_text_input,_stop_controlling_input,_start_controlling_input,_read_from_save_data,_dump_save_data,_in_dialog -sEXPORTED_RUNTIME_METHODS=ccall,cwrap -O0 -s ALLOW_MEMORY_GROWTH %FLAGS% --source-map-base http://localhost:8000/ -gsource-map -g3 -gdwarf -DDEVTOOLS -Ithirdparty -Igen main.c -o build_web\index.html --preload-file assets --shell-file web_template.html || goto :error
emcc -sEXPORTED_FUNCTIONS=_main,_end_text_input,_stop_controlling_input,_start_controlling_input,_read_from_save_data,_dump_save_data,_in_dialog -sEXPORTED_RUNTIME_METHODS=ccall,cwrap -O0 -s ALLOW_MEMORY_GROWTH %FLAGS% --source-map-base http://localhost:8000/ -g3 -gdwarf -DDEVTOOLS -Ithirdparty -Igen main.c -o build_web\index.html --preload-file assets --shell-file web_template.html || goto :error
@echo off
goto :EOF goto :EOF

@ -5,21 +5,13 @@ mkdir build_web_release
call run_codegen.bat || goto :error call run_codegen.bat || goto :error
@REM GO FUCK YOURSELF set FLAGS=-O2 -DNDEBUG
set FLAGS=-s TOTAL_STACK=5242880 set OUTPUT_FOLDER=build_web_release
copy marketing_page\favicon.ico build_web_release\favicon.ico call build_web_common.bat || goto :error
echo Building release
@echo on
emcc -sEXPORTED_FUNCTIONS=_main,_end_text_input,_stop_controlling_input,_start_controlling_input,_read_from_save_data,_dump_save_data,_in_dialog -sEXPORTED_RUNTIME_METHODS=ccall,cwrap -DNDEBUG -O2 -s ALLOW_MEMORY_GROWTH %FLAGS% -Ithirdparty -Igen main.c -o build_web_release\index.html --preload-file assets --shell-file web_template.html || goto :error
@echo off
echo Built
goto :EOF goto :EOF
:error :error
echo Failed to build echo Failed to build
exit /B %ERRORLEVEL% exit /B %ERRORLEVEL%

307
main.c

@ -247,14 +247,18 @@ void play_audio(AudioSample *sample, float volume)
// on web it disables event handling so the button up event isn't received // on web it disables event handling so the button up event isn't received
bool keydown[SAPP_KEYCODE_MENU] = {0}; bool keydown[SAPP_KEYCODE_MENU] = {0};
// set to true when should receive text input from the web input box
// or desktop text input
bool receiving_text_input = false;
bool in_dialog() // called from the web to see if should do the text input modal
bool is_receiving_text_input()
{ {
return player->state == CHARACTER_TALKING; return receiving_text_input;
} }
#ifdef DESKTOP #ifdef DESKTOP
bool receiving_text_input = false;
Sentence text_input_buffer = {0}; Sentence text_input_buffer = {0};
#else #else
#ifdef WEB #ifdef WEB
@ -276,6 +280,13 @@ void start_controlling_input()
#endif // desktop #endif // desktop
void begin_text_input()
{
receiving_text_input = true;
#ifdef DESKTOP
BUFF_CLEAR(&text_input_buffer);
#endif
}
Vec2 FloorV2(Vec2 v) Vec2 FloorV2(Vec2 v)
@ -758,6 +769,7 @@ void read_from_save_data(char *data, size_t length)
// a callback, when 'text backend' has finished making text. End dialog // a callback, when 'text backend' has finished making text. End dialog
void end_text_input(char *what_player_said) void end_text_input(char *what_player_said)
{ {
receiving_text_input = false;
// avoid double ending text input // avoid double ending text input
if(player->state != CHARACTER_TALKING) if(player->state != CHARACTER_TALKING)
{ {
@ -925,7 +937,6 @@ Color blendalpha(Color c, float alpha)
} }
void init(void) void init(void)
{ {
#ifdef WEB #ifdef WEB
@ -1285,7 +1296,8 @@ bool segments_overlapping(float *a_segment, float *b_segment)
if (farthest_to_right - farthest_to_left < total_length) if (farthest_to_right - farthest_to_left < total_length)
{ {
return true; return true;
} else }
else
{ {
return false; return false;
} }
@ -1302,7 +1314,8 @@ bool overlapping(AABB a, AABB b)
{ b.upper_left.X, b.lower_right.X }; { b.upper_left.X, b.lower_right.X };
if(segments_overlapping(a_segment, b_segment)) if(segments_overlapping(a_segment, b_segment))
{ {
} else }
else
{ {
return false; return false;
} }
@ -1317,7 +1330,8 @@ bool overlapping(AABB a, AABB b)
{ b.lower_right.Y, b.upper_left.Y }; { b.lower_right.Y, b.upper_left.Y };
if(segments_overlapping(a_segment, b_segment)) if(segments_overlapping(a_segment, b_segment))
{ {
} else }
else
{ {
return false; return false;
} }
@ -1803,6 +1817,16 @@ AABB draw_text(TextParams t)
return bounds; return bounds;
} }
AABB draw_centered_text(TextParams t)
{
t.dry_run = true;
AABB text_aabb = draw_text(t);
t.dry_run = false;
Vec2 center_pos = t.pos;
t.pos = AddV2(center_pos, MulV2F(aabb_size(text_aabb), -0.5f));
return draw_text(t);
}
float y_coord_sorting_at(Vec2 pos) float y_coord_sorting_at(Vec2 pos)
{ {
float y_coord_sorting = world_to_screen(pos).y / screen_size().y; float y_coord_sorting = world_to_screen(pos).y / screen_size().y;
@ -2150,6 +2174,40 @@ Sentence *last_said_sentence(Entity *npc)
return 0; return 0;
} }
typedef struct
{
Sentence s;
bool is_player;
} DialogElement;
typedef BUFF(DialogElement, REMEMBERED_PERCEPTIONS) Dialog;
Dialog produce_dialog(Entity *talking_to)
{
Dialog to_return = {0};
BUFF_ITER(Perception, &talking_to->remembered_perceptions)
{
if(it->type == NPCDialog)
{
Sentence to_say = it->npc_dialog;
Sentence *last_said = last_said_sentence(talking_to);
if(last_said == &it->npc_dialog)
{
to_say = (Sentence){0};
for(int i = 0; i < min(it->npc_dialog.cur_index, (int)talking_to->characters_said); i++)
{
BUFF_APPEND(&to_say, it->npc_dialog.data[i]);
}
}
BUFF_APPEND(&to_return, ((DialogElement){ .s = to_say, .is_player = false }) );
}
else if(it->type == PlayerDialog)
{
BUFF_APPEND(&to_return, ((DialogElement){ .s = it->player_dialog, .is_player = true }) );
}
}
return to_return;
}
void draw_dialog_panel(Entity *talking_to, float alpha) void draw_dialog_panel(Entity *talking_to, float alpha)
{ {
@ -2193,34 +2251,7 @@ void draw_dialog_panel(Entity *talking_to, float alpha)
{ {
float new_line_height = dialog_panel.lower_right.Y; float new_line_height = dialog_panel.lower_right.Y;
typedef struct Dialog dialog = produce_dialog(talking_to);
{
Sentence s;
bool is_player;
} DialogElement;
BUFF(DialogElement, 32) dialog = {0};
BUFF_ITER(Perception, &talking_to->remembered_perceptions)
{
if(it->type == NPCDialog)
{
Sentence to_say = it->npc_dialog;
Sentence *last_said = last_said_sentence(talking_to);
if(last_said == &it->npc_dialog)
{
to_say = (Sentence){0};
for(int i = 0; i < min(it->npc_dialog.cur_index, (int)talking_to->characters_said); i++)
{
BUFF_APPEND(&to_say, it->npc_dialog.data[i]);
}
}
BUFF_APPEND(&dialog, ((DialogElement){ .s = to_say, .is_player = false }) );
}
else if(it->type == PlayerDialog)
{
BUFF_APPEND(&dialog, ((DialogElement){ .s = it->player_dialog, .is_player = true }) );
}
}
if(dialog.cur_index > 0) if(dialog.cur_index > 0)
{ {
for(int i = dialog.cur_index - 1; i >= 0; i--) for(int i = dialog.cur_index - 1; i >= 0; i--)
@ -2254,19 +2285,74 @@ void draw_dialog_panel(Entity *talking_to, float alpha)
} }
} }
#define ROLL_KEY SAPP_KEYCODE_LEFT_SHIFT #define ROLL_KEY SAPP_KEYCODE_LEFT_SHIFT
double elapsed_time = 0.0; double elapsed_time = 0.0;
double last_frame_processing_time = 0.0; double last_frame_processing_time = 0.0;
uint64_t last_frame_time; uint64_t last_frame_time;
Vec2 mouse_pos = {0}; // in screen space Vec2 mouse_pos = {0}; // in screen space
bool interact_just_pressed = false;
bool mouse_just_clicked = false; typedef struct
{
bool interact;
bool mouse_down;
bool mouse_up;
} PressedState;
PressedState pressed = {0};
bool mouse_down = false;
float learned_shift = 0.0; float learned_shift = 0.0;
float learned_space = 0.0; float learned_space = 0.0;
float learned_e = 0.0; float learned_e = 0.0;
#ifdef DEVTOOLS #ifdef DEVTOOLS
bool mouse_frozen = false; bool mouse_frozen = false;
#endif #endif
typedef struct
{
float pressed_amount; // for buttons, 0.0 is completely unpressed (up), 1.0 is completely depressed (down)
bool is_being_pressed;
} IMState;
struct { int key; IMState value; } *imui_state = 0;
bool imbutton_key(Vec2 upper_left, Vec2 size, float text_scale, const char *text, int key, float dt)
{
IMState state = hmget(imui_state, key);
upper_left.y += Lerp(0.0f, state.pressed_amount, 5.0f);
AABB button_aabb = aabb_at(upper_left, size);
bool to_return = false;
float pressed_target = 0.5f;
if(has_point(button_aabb, mouse_pos))
{
if(pressed.mouse_down)
{
state.is_being_pressed = true;
}
pressed_target = 1.0f; // when hovering button like pops out a bit
if(pressed.mouse_up) to_return = true; // when mouse released, and hovering over button, this is a button press - Lao Tzu
}
if(pressed.mouse_up) state.is_being_pressed = false;
if(state.is_being_pressed) pressed_target = 0.0f;
state.pressed_amount = Lerp(state.pressed_amount, dt*20.0f, pressed_target);
float button_alpha = Lerp(0.5f, state.pressed_amount, 1.0f);
draw_quad((DrawParams){false, quad_aabb(button_aabb), IMG(image_white_square), blendalpha(WHITE, button_alpha)});
draw_centered_text((TextParams){false, false, text, aabb_center(button_aabb), BLACK, text_scale, .clip_to = button_aabb});
hmput(imui_state, key, state);
return to_return;
}
#define imbutton(...) imbutton_key(__VA_ARGS__, __LINE__, dt)
void frame(void) void frame(void)
{ {
static float speed_factor = 1.0f; static float speed_factor = 1.0f;
@ -2306,14 +2392,6 @@ void frame(void)
PROFILE_SCOPE("frame") PROFILE_SCOPE("frame")
{ {
#ifdef DESKTOP
if(!receiving_text_input && in_dialog())
{
receiving_text_input = true;
BUFF_CLEAR(&text_input_buffer);
}
#endif
// better for vertical aspect ratios // better for vertical aspect ratios
if(screen_size().x < 0.7f*screen_size().y) if(screen_size().x < 0.7f*screen_size().y)
{ {
@ -2340,7 +2418,7 @@ void frame(void)
} }
attack = mobile_attack_pressed; attack = mobile_attack_pressed;
roll = mobile_roll_pressed; roll = mobile_roll_pressed;
interact = interact_just_pressed; interact = pressed.interact;
} }
else else
{ {
@ -2353,7 +2431,7 @@ void frame(void)
attack = attack || keydown[SAPP_KEYCODE_LEFT_CONTROL]; attack = attack || keydown[SAPP_KEYCODE_LEFT_CONTROL];
#endif #endif
roll = keydown[ROLL_KEY]; roll = keydown[ROLL_KEY];
interact = interact_just_pressed; interact = pressed.interact;
} }
if(LenV2(movement) > 1.0) if(LenV2(movement) > 1.0)
{ {
@ -2463,6 +2541,9 @@ void frame(void)
speed_factor = speed_target; speed_factor = speed_target;
} }
int num_timestep_loops = 0; int num_timestep_loops = 0;
// restore the pressed state after gameplay loop so pressed input events can be processed in the
// rendering correctly as well
PressedState before_gameplay_loops = pressed;
{ {
unprocessed_gameplay_time += unwarped_dt; unprocessed_gameplay_time += unwarped_dt;
float timestep = fminf(unwarped_dt, (float)MINIMUM_TIMESTEP); float timestep = fminf(unwarped_dt, (float)MINIMUM_TIMESTEP);
@ -2562,7 +2643,7 @@ void frame(void)
if(has_point(entity_aabb(it), screen_to_world(mouse_pos))) if(has_point(entity_aabb(it), screen_to_world(mouse_pos)))
{ {
it->being_hovered = true; it->being_hovered = true;
if(mouse_just_clicked) if(pressed.mouse_down)
{ {
player->talking_to = frome(it); player->talking_to = frome(it);
player->state = CHARACTER_TALKING; player->state = CHARACTER_TALKING;
@ -3213,13 +3294,17 @@ F cost: G + H
player->state = CHARACTER_IDLE; player->state = CHARACTER_IDLE;
} }
} }
else
{
player->talking_to = (EntityRef){0};
}
} }
if(interact) if(interact)
{ {
if(player->in_conversation_mode) if(player->state == CHARACTER_TALKING)
{ {
player->in_conversation_mode = false; player->state = CHARACTER_IDLE;
} }
else if(closest_interact_with) else if(closest_interact_with)
{ {
@ -3251,10 +3336,6 @@ F cost: G + H
thrown->held_by_player = false; thrown->held_by_player = false;
player->holding_item = (EntityRef){0}; player->holding_item = (EntityRef){0};
} }
else
{
player->in_conversation_mode = true;
}
} }
} }
@ -3362,12 +3443,81 @@ F cost: G + H
reset_level(); reset_level();
} }
} }
interact_just_pressed = false; pressed = (PressedState){0};
mouse_just_clicked = false;
interact = false; interact = false;
} // while loop } // while loop
} }
pressed = before_gameplay_loops;
PROFILE_SCOPE("dialog menu") // big dialog panel
{
static float on_screen = 0.0f;
Entity *talking_to = gete(player->talking_to);
on_screen = Lerp(on_screen, dt*9.0f, talking_to ? 1.0f : 0.0f);
{
float panel_width = screen_size().x * 0.4f * on_screen;
AABB panel_aabb = (AABB){.upper_left = V2(0.0f, screen_size().y), .lower_right = V2(panel_width, 0.0f)};
float alpha = 1.0f;
if(aabb_is_valid(panel_aabb))
{
float new_line_height = panel_aabb.lower_right.Y;
draw_quad((DrawParams){false, quad_aabb(panel_aabb), IMG(image_white_square), blendalpha(BLACK, 0.7f)});
// apply padding
float padding = 0.1f * panel_width;
panel_width -= padding * 2.0f;
panel_aabb.upper_left = AddV2(panel_aabb.upper_left, V2(padding, -padding));
panel_aabb.lower_right = AddV2(panel_aabb.lower_right, V2(-padding, padding));
if(talking_to)
{
Dialog dialog = produce_dialog(talking_to);
if(dialog.cur_index > 0)
{
for(int i = dialog.cur_index - 1; i >= 0; i--)
{
DialogElement *it = &dialog.data[i];
{
Color *colors = calloc(sizeof(*colors), it->s.cur_index);
for(int char_i = 0; char_i < it->s.cur_index; char_i++)
{
if(it->is_player)
{
colors[char_i] = BLACK;
}
else
{
colors[char_i] = colhex(0x345e22);
}
colors[char_i] = blendalpha(colors[char_i], alpha);
}
float measured_line_height = draw_wrapped_text(true, V2(panel_aabb.upper_left.X, new_line_height), panel_aabb.lower_right.X - panel_aabb.upper_left.X, it->s.data, colors, 0.5f, true, panel_aabb);
new_line_height += (new_line_height - measured_line_height);
draw_wrapped_text(false, V2(panel_aabb.upper_left.X, new_line_height), panel_aabb.lower_right.X - panel_aabb.upper_left.X, it->s.data, colors, 0.5f, true, panel_aabb);
free(colors);
}
}
}
}
// draw button
float space_btwn_buttons = panel_width * 0.05f;
float text_scale = 1.5f;
const float num_buttons = 2.0f;
Vec2 button_size = V2(
(panel_width - (num_buttons - 1.0f)*space_btwn_buttons)/num_buttons,
(panel_aabb.upper_left.y - panel_aabb.lower_right.y)*0.2f
);
float button_grid_width = button_size.x*num_buttons + space_btwn_buttons * (num_buttons - 1.0f);
Vec2 cur_upper_left = V2((panel_aabb.upper_left.x + panel_aabb.lower_right.x)/2.0f - button_grid_width/2.0f, panel_aabb.lower_right.y + button_size.y);
imbutton(cur_upper_left, button_size, text_scale, "Speak");
cur_upper_left.x += button_size.x + space_btwn_buttons;
imbutton(cur_upper_left, button_size, text_scale, "Give Item");
}
}
}
PROFILE_SCOPE("render player") PROFILE_SCOPE("render player")
{ {
@ -3490,26 +3640,27 @@ F cost: G + H
Color col = LerpV4(WHITE, it->damage, RED); Color col = LerpV4(WHITE, it->damage, RED);
if(it->is_npc) if(it->is_npc)
{ {
// health bar
{
Vec2 health_bar_size = V2(TILE_SIZE, 0.1f * TILE_SIZE);
float health_bar_progress = 1.0f - (it->damage / entity_max_damage(it));
Vec2 health_bar_center = AddV2(it->pos, V2(0.0f, -entity_aabb_size(it).y));
Vec2 bar_upper_left = AddV2(health_bar_center, MulV2F(health_bar_size, -0.5f));
draw_quad((DrawParams){true, quad_at(bar_upper_left, health_bar_size), IMG(image_white_square), BROWN});
draw_quad((DrawParams){true, quad_at(bar_upper_left, V2(health_bar_size.x * health_bar_progress, health_bar_size.y)), IMG(image_white_square), GREEN});
}
float dist = LenV2(SubV2(it->pos, player->pos)); float dist = LenV2(SubV2(it->pos, player->pos));
dist -= 10.0f; // radius around point where dialog is completely opaque dist -= 10.0f; // radius around point where dialog is completely opaque
float max_dist = dialog_interact_size/2.0f; float max_dist = dialog_interact_size/2.0f;
float alpha = 1.0f - (float)clamp(dist/max_dist, 0.0, 1.0); float alpha = 1.0f - (float)clamp(dist/max_dist, 0.0, 1.0);
if(gete(player->talking_to) == it && player->state == CHARACTER_TALKING) alpha = 1.0f; if(gete(player->talking_to) == it && player->state == CHARACTER_TALKING) alpha = 0.0f;
if(it->being_hovered) if(it->being_hovered)
{ {
draw_quad((DrawParams){true, quad_centered(it->pos, V2(TILE_SIZE, TILE_SIZE)), IMG(image_hovering_circle), WHITE}); draw_quad((DrawParams){true, quad_centered(it->pos, V2(TILE_SIZE, TILE_SIZE)), IMG(image_hovering_circle), WHITE});
alpha = 1.0f; alpha = 1.0f;
} }
// health bar
{
Vec2 health_bar_size = V2(TILE_SIZE, 0.1f * TILE_SIZE);
float health_bar_progress = 1.0f - (it->damage / entity_max_damage(it));
Vec2 health_bar_center = AddV2(it->pos, V2(0.0f, -15.0f));
Vec2 bar_upper_left = AddV2(health_bar_center, MulV2F(health_bar_size, -0.5f));
draw_quad((DrawParams){true, quad_at(bar_upper_left, health_bar_size), IMG(image_white_square), BROWN});
draw_quad((DrawParams){true, quad_at(bar_upper_left, V2(health_bar_size.x * health_bar_progress, health_bar_size.y)), IMG(image_white_square), GREEN});
}
it->dialog_panel_opacity = Lerp(it->dialog_panel_opacity, unwarped_dt*10.0f, alpha); it->dialog_panel_opacity = Lerp(it->dialog_panel_opacity, unwarped_dt*10.0f, alpha);
draw_dialog_panel(it, it->dialog_panel_opacity); draw_dialog_panel(it, it->dialog_panel_opacity);
@ -3668,9 +3819,10 @@ F cost: G + H
total_height -= (total_height - (vertical_spacing + HELPER_SIZE)); total_height -= (total_height - (vertical_spacing + HELPER_SIZE));
const float padding = 50.0f; const float padding = 50.0f;
float y = screen_size().y/2.0f + total_height/2.0f; float y = screen_size().y/2.0f + total_height/2.0f;
draw_quad((DrawParams){false, quad_at(V2(padding, y), V2(HELPER_SIZE,HELPER_SIZE)), IMG(image_shift_icon), (Color){1.0f,1.0f,1.0f,fmaxf(0.0f, 1.0f-learned_shift)}, .y_coord_sorting = Y_COORD_IN_FRONT}); float x = screen_size().x - padding - HELPER_SIZE;
draw_quad((DrawParams){false, quad_at(V2(x, y), V2(HELPER_SIZE,HELPER_SIZE)), IMG(image_shift_icon), (Color){1.0f,1.0f,1.0f,fmaxf(0.0f, 1.0f-learned_shift)}, .y_coord_sorting = Y_COORD_IN_FRONT});
y -= vertical_spacing; y -= vertical_spacing;
draw_quad((DrawParams){false, quad_at(V2(padding, y), V2(HELPER_SIZE,HELPER_SIZE)), IMG(image_space_icon), (Color){1.0f,1.0f,1.0f,fmaxf(0.0f, 1.0f-learned_space)}, .y_coord_sorting = Y_COORD_IN_FRONT}); draw_quad((DrawParams){false, quad_at(V2(x, y), V2(HELPER_SIZE,HELPER_SIZE)), IMG(image_space_icon), (Color){1.0f,1.0f,1.0f,fmaxf(0.0f, 1.0f-learned_space)}, .y_coord_sorting = Y_COORD_IN_FRONT});
} }
@ -3748,12 +3900,14 @@ F cost: G + H
last_frame_processing_time = stm_sec(stm_diff(stm_now(),time_start_frame)); last_frame_processing_time = stm_sec(stm_diff(stm_now(),time_start_frame));
reset(&scratch); reset(&scratch);
pressed = (PressedState){0};
} }
} }
void cleanup(void) void cleanup(void)
{ {
sg_shutdown(); sg_shutdown();
hmfree(imui_state);
Log("Cleaning up\n"); Log("Cleaning up\n");
} }
@ -3783,7 +3937,6 @@ void event(const sapp_event *e)
} }
if(e->type == SAPP_EVENTTYPE_KEY_DOWN && e->key_code == SAPP_KEYCODE_ENTER) if(e->type == SAPP_EVENTTYPE_KEY_DOWN && e->key_code == SAPP_KEYCODE_ENTER)
{ {
receiving_text_input = false;
end_text_input(text_input_buffer.data); end_text_input(text_input_buffer.data);
} }
} }
@ -3821,7 +3974,7 @@ void event(const sapp_event *e)
{ {
interact_pressed_by = activate(point.identifier); interact_pressed_by = activate(point.identifier);
mobile_interact_pressed = true; mobile_interact_pressed = true;
interact_just_pressed = true; pressed.interact = true;
} }
if(LenV2(SubV2(touchpoint_screen_pos, attack_button_pos())) < mobile_button_size()*0.5f) if(LenV2(SubV2(touchpoint_screen_pos, attack_button_pos())) < mobile_button_size()*0.5f)
{ {
@ -3878,7 +4031,17 @@ void event(const sapp_event *e)
{ {
if(e->mouse_button == SAPP_MOUSEBUTTON_LEFT) if(e->mouse_button == SAPP_MOUSEBUTTON_LEFT)
{ {
mouse_just_clicked = true; pressed.mouse_down = true;
mouse_down = true;
}
}
if(e->type == SAPP_EVENTTYPE_MOUSE_UP)
{
if(e->mouse_button == SAPP_MOUSEBUTTON_LEFT)
{
mouse_down = false;
pressed.mouse_up = true;
} }
} }
@ -3893,7 +4056,7 @@ void event(const sapp_event *e)
if(e->key_code == SAPP_KEYCODE_E) if(e->key_code == SAPP_KEYCODE_E)
{ {
interact_just_pressed = true; pressed.interact = true;
} }
if(e->key_code == SAPP_KEYCODE_LEFT_SHIFT) if(e->key_code == SAPP_KEYCODE_LEFT_SHIFT)

@ -236,7 +236,7 @@ typedef struct Entity
Vec2 to_throw_direction; Vec2 to_throw_direction;
CharacterState state; CharacterState state;
EntityRef talking_to; // Maybe should be generational index, but I dunno. No death yet EntityRef talking_to;
bool is_rolling; // can only roll in idle or walk states bool is_rolling; // can only roll in idle or walk states
double time_not_rolling; // for cooldown for roll, so you can't just hold it and be invincible double time_not_rolling; // for cooldown for roll, so you can't just hold it and be invincible

@ -262,7 +262,7 @@ function frame(delta) {
let input_visible = input_modal.style.display === "flex"; let input_visible = input_modal.style.display === "flex";
let pause_visible = pause_modal.style.display === "flex"; let pause_visible = pause_modal.style.display === "flex";
if( Module.ccall('in_dialog', 'bool', [], [])) { if( Module.ccall('is_receiving_text_input', 'bool', [], [])) {
if(!input_visible) { if(!input_visible) {
document.getElementById("inputtext").value = ""; document.getElementById("inputtext").value = "";
setTimeout(function(){document.getElementById("inputtext").focus();},50); // for some reason focus doesn't work immediately here setTimeout(function(){document.getElementById("inputtext").focus();},50); // for some reason focus doesn't work immediately here

Loading…
Cancel
Save