File confec.cpp changed (mode: 100644) (index df34ddc..8d05afe) |
... |
... |
dialogue::Talk convo; |
184 |
184 |
|
|
185 |
185 |
fgl::Font font_vn, font_mono, font_inventory; |
fgl::Font font_vn, font_mono, font_inventory; |
186 |
186 |
|
|
187 |
|
fgl::Texture shadeBox, button_n, button_p; |
|
|
187 |
|
fgl::Texture shadeBox, button_n, button_p, map_overlay; |
188 |
188 |
|
|
189 |
189 |
// VN variables. |
// VN variables. |
190 |
190 |
long long health = 0, day = 0, money = 0, multiplayer = 0, mainmenu = 0; |
long long health = 0, day = 0, money = 0, multiplayer = 0, mainmenu = 0; |
|
... |
... |
fgl::Texture tex_circle_grey, tex_circle_orange, tex_cursor, |
492 |
492 |
tex_notification_box, tex_notification_net, tex_notification, |
tex_notification_box, tex_notification_net, tex_notification, |
493 |
493 |
tex_recipe_overlay, tex_boxes, tex_box_select, tex_character_select; |
tex_recipe_overlay, tex_boxes, tex_box_select, tex_character_select; |
494 |
494 |
|
|
495 |
|
fgl::Framebuffer framebuffer; |
|
|
495 |
|
fgl::Framebuffer fb_minimap, framebuffer; |
496 |
496 |
|
|
497 |
497 |
double circleX = DBL_INF, circleY = DBL_INF; |
double circleX = DBL_INF, circleY = DBL_INF; |
498 |
498 |
|
|
|
... |
... |
int main( int argc, char* argv[] ){ |
1125 |
1125 |
data_path + "/glsl/sunlit_instance.frag", |
data_path + "/glsl/sunlit_instance.frag", |
1126 |
1126 |
{ "u_texture" } |
{ "u_texture" } |
1127 |
1127 |
); |
); |
|
1128 |
|
fb_minimap = fgl::createFramebuffer( 256, 256 ); |
1128 |
1129 |
framebuffer = fgl::createFramebuffer( fgl::getDisplayWidth(), fgl::getDisplayHeight() ); |
framebuffer = fgl::createFramebuffer( fgl::getDisplayWidth(), fgl::getDisplayHeight() ); |
1129 |
1130 |
fgl::setPipeline( fgl::colorModPipeline ); |
fgl::setPipeline( fgl::colorModPipeline ); |
1130 |
1131 |
|
|
|
... |
... |
int main( int argc, char* argv[] ){ |
1133 |
1134 |
|
|
1134 |
1135 |
button_n = loadImage( data_path + "/ui/button_n.png", true, true ); |
button_n = loadImage( data_path + "/ui/button_n.png", true, true ); |
1135 |
1136 |
button_p = loadImage( data_path + "/ui/button_p.png", true, true ); |
button_p = loadImage( data_path + "/ui/button_p.png", true, true ); |
|
1137 |
|
map_overlay = loadImage( data_path + "/ui/map_overlay.png", false, false ); |
1136 |
1138 |
|
|
1137 |
1139 |
mt = std::mt19937_64( std::time( nullptr ) ); |
mt = std::mt19937_64( std::time( nullptr ) ); |
1138 |
1140 |
|
|
|
... |
... |
void DrawCharacterSelect(){ |
5344 |
5346 |
std::min( choiceIndex + moveXDown, (int)items.size() - 1 ); |
std::min( choiceIndex + moveXDown, (int)items.size() - 1 ); |
5345 |
5347 |
if( moveXDown && choiceIndex < 0 ) choiceIndex = 0; |
if( moveXDown && choiceIndex < 0 ) choiceIndex = 0; |
5346 |
5348 |
double sw = fgl::getDisplayWidth(), sh = fgl::getDisplayHeight(); |
double sw = fgl::getDisplayWidth(), sh = fgl::getDisplayHeight(); |
5347 |
|
float round_scale = std::round( sh / simScreenHeight2D ); |
|
5348 |
|
if( round_scale < 1.0f ) round_scale = 1.0f; |
|
|
5349 |
|
float round_scale = |
|
5350 |
|
std::max( std::round( sh / simScreenHeight2D ), 1.0 ); |
5349 |
5351 |
float increment_x = tex_character_select.width * round_scale; |
float increment_x = tex_character_select.width * round_scale; |
5350 |
5352 |
float increment_y = tex_character_select.height * round_scale; |
float increment_y = tex_character_select.height * round_scale; |
5351 |
5353 |
float offset_x = ( sw - increment_x * items.size() ) * 0.5; |
float offset_x = ( sw - increment_x * items.size() ) * 0.5; |
|
... |
... |
void GameLoop( double d ){ |
5669 |
5671 |
} |
} |
5670 |
5672 |
|
|
5671 |
5673 |
// Draw pixel art UI elements at an integer scale for quality. |
// Draw pixel art UI elements at an integer scale for quality. |
5672 |
|
float round_scale = std::round( sh / simScreenHeight2D ); |
|
5673 |
|
if( round_scale < 1.0f ) round_scale = 1.0f; |
|
|
5674 |
|
float round_scale = |
|
5675 |
|
std::max( std::round( sh / simScreenHeight2D ), 1.0 ); |
5674 |
5676 |
// Inventory offset X. |
// Inventory offset X. |
5675 |
5677 |
float boxOffX = sw - tex_boxes.width * round_scale; |
float boxOffX = sw - tex_boxes.width * round_scale; |
5676 |
5678 |
|
|
|
... |
... |
void GameLoop( double d ){ |
6323 |
6325 |
|
|
6324 |
6326 |
vnDraw( sw, sh ); |
vnDraw( sw, sh ); |
6325 |
6327 |
|
|
6326 |
|
// Display special screens: Either recipes, trading, sequencer, or |
|
6327 |
|
// cake. |
|
|
6328 |
|
// Display special screens: Either recipes, trading, sequencer, |
|
6329 |
|
// cake, or minimap. |
6328 |
6330 |
if( recipes_display ){ |
if( recipes_display ){ |
6329 |
6331 |
// Draw recipes below the bottom edge of the inventory boxes. |
// Draw recipes below the bottom edge of the inventory boxes. |
6330 |
6332 |
float offset_y = tex_boxes.height * round_scale; |
float offset_y = tex_boxes.height * round_scale; |
|
... |
... |
void GameLoop( double d ){ |
6468 |
6470 |
); |
); |
6469 |
6471 |
offset_y += vnScale * font_vn.height * 1.333; |
offset_y += vnScale * font_vn.height * 1.333; |
6470 |
6472 |
// TODO. |
// TODO. |
|
6473 |
|
}else if( convo.screen.ids.empty() ){ |
|
6474 |
|
// Draw to the minimap framebuffer. |
|
6475 |
|
fgl::setFramebuffer( fb_minimap ); |
|
6476 |
|
double |
|
6477 |
|
old_w = world.screenWidth, |
|
6478 |
|
old_h = world.screenHeight, |
|
6479 |
|
old_s = world.scale; |
|
6480 |
|
world.screenWidth = fb_minimap.width; |
|
6481 |
|
world.screenHeight = fb_minimap.height; |
|
6482 |
|
world.scale = 0.2; |
|
6483 |
|
glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA ); |
|
6484 |
|
// Day/night tinting. |
|
6485 |
|
fgl::setFog( ambient_light ); |
|
6486 |
|
world.drawMap(); |
|
6487 |
|
world.screenWidth = old_w; |
|
6488 |
|
world.screenHeight = old_h; |
|
6489 |
|
world.scale = old_s; |
|
6490 |
|
// Switch back to the color mod pipeline. |
|
6491 |
|
fgl::setPipeline( fgl::colorModPipeline ); |
|
6492 |
|
// Draw the minimap to the screen. |
|
6493 |
|
fgl::setFramebuffer(); |
|
6494 |
|
auto tex = fgl::getFramebufferTexture( fb_minimap ); |
|
6495 |
|
fgl::texMatrix = linalg::identity; |
|
6496 |
|
fgl::setFog( { 1.0f, 1.0f, 1.0f, 1.0f } ); |
|
6497 |
|
glDisable( GL_CULL_FACE ); |
|
6498 |
|
//glDisable( GL_BLEND ); |
|
6499 |
|
int margin = 18; |
|
6500 |
|
float map_scale = |
|
6501 |
|
std::max( std::floor( round_scale * 0.5f ), 1.0f ); |
|
6502 |
|
drawImage( |
|
6503 |
|
tex, |
|
6504 |
|
sw - ( tex.width + margin ) * map_scale, |
|
6505 |
|
sh - margin * map_scale, |
|
6506 |
|
0.0f, |
|
6507 |
|
map_scale, |
|
6508 |
|
-map_scale |
|
6509 |
|
); |
|
6510 |
|
glEnable( GL_CULL_FACE ); |
|
6511 |
|
//glEnable( GL_BLEND ); |
|
6512 |
|
// Draw the map overlay. |
|
6513 |
|
drawImage( |
|
6514 |
|
map_overlay, |
|
6515 |
|
sw - map_overlay.width * map_scale, |
|
6516 |
|
sh - map_overlay.width * map_scale, |
|
6517 |
|
0.0f, |
|
6518 |
|
map_scale, |
|
6519 |
|
map_scale |
|
6520 |
|
); |
6471 |
6521 |
} |
} |
6472 |
6522 |
|
|
6473 |
6523 |
glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA ); |
glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA ); |