font fix
This commit is contained in:
parent
5ca3629406
commit
b4c2625371
|
@ -173,7 +173,6 @@ duk_idx_t vecarr2duk(duk_context *duk, cpVect *points, int n)
|
||||||
return arr;
|
return arr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void duk_dump_stack(duk_context *duk)
|
void duk_dump_stack(duk_context *duk)
|
||||||
{
|
{
|
||||||
YughInfo("DUK CALLSTACK");
|
YughInfo("DUK CALLSTACK");
|
||||||
|
@ -204,7 +203,6 @@ void duk_dump_stack(duk_context *duk)
|
||||||
duk_pop(duk);
|
duk_pop(duk);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
duk_ret_t duk_gui_text(duk_context *duk) {
|
duk_ret_t duk_gui_text(duk_context *duk) {
|
||||||
const char *s = duk_to_string(duk, 0);
|
const char *s = duk_to_string(duk, 0);
|
||||||
cpVect pos = duk2vec2(duk, 1);
|
cpVect pos = duk2vec2(duk, 1);
|
||||||
|
@ -223,8 +221,9 @@ duk_ret_t duk_ui_text(duk_context *duk)
|
||||||
float size = duk_to_number(duk, 2);
|
float size = duk_to_number(duk, 2);
|
||||||
struct color c = duk2color(duk,3);
|
struct color c = duk2color(duk,3);
|
||||||
const float col[3] = {(float)c.r/255, (float)c.g/255, (float)c.b/255};
|
const float col[3] = {(float)c.r/255, (float)c.g/255, (float)c.b/255};
|
||||||
renderText(s, &pos, size, col, 500,-1);
|
int wrap = duk_to_int(duk,4);
|
||||||
return 0;
|
duk_push_int(duk,renderText(s, &pos, size, col, wrap,-1));
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
duk_ret_t duk_cursor_text(duk_context *duk)
|
duk_ret_t duk_cursor_text(duk_context *duk)
|
||||||
|
@ -236,7 +235,8 @@ duk_ret_t duk_cursor_text(duk_context *duk)
|
||||||
struct color c = duk2color(duk,3);
|
struct color c = duk2color(duk,3);
|
||||||
const float col[3] = {(float)c.r/255, (float)c.g/255, (float)c.b/255};
|
const float col[3] = {(float)c.r/255, (float)c.g/255, (float)c.b/255};
|
||||||
int cursor = duk_to_int(duk,4);
|
int cursor = duk_to_int(duk,4);
|
||||||
renderText(s, &pos, size, col, 500,cursor);
|
int wrap = duk_to_int(duk,5);
|
||||||
|
renderText(s, &pos, size, col, wrap,cursor);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1461,7 +1461,7 @@ void ffi_load()
|
||||||
DUK_FUNC(register_collide, DUK_VARARGS);
|
DUK_FUNC(register_collide, DUK_VARARGS);
|
||||||
|
|
||||||
DUK_FUNC(gui_text, DUK_VARARGS);
|
DUK_FUNC(gui_text, DUK_VARARGS);
|
||||||
DUK_FUNC(ui_text, 4);
|
DUK_FUNC(ui_text, 5);
|
||||||
DUK_FUNC(cursor_text,5);
|
DUK_FUNC(cursor_text,5);
|
||||||
DUK_FUNC(gui_img, 2);
|
DUK_FUNC(gui_img, 2);
|
||||||
|
|
||||||
|
|
|
@ -259,7 +259,7 @@ void text_settype(struct sFont *mfont)
|
||||||
font = mfont;
|
font = mfont;
|
||||||
}
|
}
|
||||||
|
|
||||||
void renderText(const char *text, mfloat_t pos[2], float scale, mfloat_t color[3], float lw, int caret)
|
int renderText(const char *text, mfloat_t pos[2], float scale, mfloat_t color[3], float lw, int caret)
|
||||||
{
|
{
|
||||||
int len = strlen(text);
|
int len = strlen(text);
|
||||||
drawcaret = caret;
|
drawcaret = caret;
|
||||||
|
@ -333,4 +333,6 @@ void renderText(const char *text, mfloat_t pos[2], float scale, mfloat_t color[3
|
||||||
}
|
}
|
||||||
|
|
||||||
// glDrawArrays(GL_TRIANGLE_STRIP, 0, 4*2);
|
// glDrawArrays(GL_TRIANGLE_STRIP, 0, 4*2);
|
||||||
|
|
||||||
|
return cursor[1] - pos[1];
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@ void font_frame(struct window *w);
|
||||||
struct sFont *MakeFont(const char *fontfile, int height);
|
struct sFont *MakeFont(const char *fontfile, int height);
|
||||||
void sdrawCharacter(struct Character c, mfloat_t cursor[2], float scale, struct shader *shader, float color[3]);
|
void sdrawCharacter(struct Character c, mfloat_t cursor[2], float scale, struct shader *shader, float color[3]);
|
||||||
void text_settype(struct sFont *font);
|
void text_settype(struct sFont *font);
|
||||||
void renderText(const char *text, mfloat_t pos[2], float scale, mfloat_t color[3], float lw,int caret);
|
int renderText(const char *text, mfloat_t pos[2], float scale, mfloat_t color[3], float lw,int caret);
|
||||||
|
|
||||||
unsigned char *slurp_file(const char *filename);
|
unsigned char *slurp_file(const char *filename);
|
||||||
char *slurp_text(const char *filename);
|
char *slurp_text(const char *filename);
|
||||||
|
|
|
@ -171,10 +171,13 @@ static ma_sound music_sound;
|
||||||
|
|
||||||
void mini_music_play(char *path)
|
void mini_music_play(char *path)
|
||||||
{
|
{
|
||||||
|
ma_sound_uninit(&music_sound);
|
||||||
int result = ma_sound_init_from_file(engine, path, MA_SOUND_FLAG_NO_SPATIALIZATION, NULL, NULL, &music_sound);
|
int result = ma_sound_init_from_file(engine, path, MA_SOUND_FLAG_NO_SPATIALIZATION, NULL, NULL, &music_sound);
|
||||||
if (result != MA_SUCCESS) {
|
if (result != MA_SUCCESS) {
|
||||||
YughInfo("DID NOT LOAD SOUND!");
|
YughInfo("Could not load music at path: %s", path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
YughInfo("Loading %s...", path);
|
||||||
ma_sound_start(&music_sound);
|
ma_sound_start(&music_sound);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -66,6 +66,7 @@ struct bus *first_free_bus(struct dsp_filter in) {
|
||||||
|
|
||||||
void bus_free(struct bus *b)
|
void bus_free(struct bus *b)
|
||||||
{
|
{
|
||||||
|
if (!b) return;
|
||||||
b->on = 0;
|
b->on = 0;
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue