Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Add tileset mipmap support & bump version to 0.7.4 | 9b10dbc7ae66493b87c53feddc600a8dda514802 | mse | 2021-12-06 11:38:53 |
Change UV behavior | 7817fbe285427dd2c71a8460cf9a6adc5b58628c | mse | 2021-12-06 02:46:32 |
Bump version to v0.7.3 | d5ec7a787af02be5e4e89236b62f7c69326a7166 | mse | 2021-12-06 00:50:25 |
Add a minimap | 3da6d1001bcd89a903cd761492eab1cc23dbd0d6 | mse | 2021-12-05 16:04:36 |
Fix special item increment bug | 8e7425924c63f56351357e6690d25ee6ecf3048a | mse | 2021-12-04 06:41:02 |
Bump version to v0.7.2 | a4ccb6ce137ec34ec5852d95f8bff545f8b4b85c | mse | 2021-12-02 11:41:27 |
Make interact button also place items | 3f1f27d32e162fc9e0cbe5e420b0ec78ef705d15 | mse | 2021-12-01 13:33:37 |
Switch entity button to interact | a409b707d3e704e4370702bdb77a2a9841e624d3 | mse | 2021-11-30 06:37:25 |
Translate Continue button to Greek & bump version to 0.7.1 | 5dfb837cb70a16a71dc9338e1126f1cd69ada1a2 | mse | 2021-11-29 09:22:04 |
Bump version to v0.7.0 | e303b764c874b5e61bedc64b634f4ac80d5f27e5 | mse | 2021-11-28 07:48:29 |
Add CSL functions, syntax enhancements, OnPlayerEat, & remove init.json | a484c33465821c194fe5d34cfef6716de198aaa6 | mse | 2021-11-27 04:24:46 |
Fix libs.cpp | c736b9be42a871adc4827431961e8b769572c26b | mse | 2021-11-20 02:34:34 |
Fix tile seams | ae09d59880997b3e1fd1cdf2083f83b3f0f73312 | mse | 2021-11-20 00:29:03 |
Make particle light follow sun angle | ef944efffd223dd843a1471d6b651f5dc46d871b | mse | 2021-11-19 22:14:29 |
Work on particle light and bump version to v0.6.5 | 73b7b68133f7767f78c47492f693c5e9e965e214 | mse | 2021-11-19 08:04:32 |
Improve rim lighting and flatten floor gibs | 4a7082e02eda370dba12bb44089777552859c5bd | mse | 2021-11-18 04:30:05 |
Change rim lighting to specular | 937d99bee19b936fbf95927c5877a915c4128de1 | mse | 2021-11-18 03:49:41 |
Add sprite rim lighting | eb9ade21b6253e050d6962c273187f090c20ff2a | mse | 2021-11-18 01:29:22 |
Bump version to v0.6.4 | c2aeae76122cc95d03756a55a528b62609762820 | mse | 2021-11-17 11:38:37 |
Attempt to fix JSON serializing in locales with commas | beae8b63fb0deaaf0b66ef4f188df270120ebe1c | mse | 2021-11-17 11:19:18 |
File | Lines added | Lines deleted |
---|---|---|
confec.cpp | 1 | 1 |
include/fworld.h | 15 | 2 |
File confec.cpp changed (mode: 100644) (index f25fcc2..f2f8d2b) | |||
... | ... | struct SpecialItem { | |
456 | 456 | int32_t special_item_result = 0; | int32_t special_item_result = 0; |
457 | 457 | ||
458 | 458 | // App variable definitions. | // App variable definitions. |
459 | std::string app_version = "v0.7.3"; | ||
459 | std::string app_version = "v0.7.4"; | ||
460 | 460 | #ifdef __DEMO__ | #ifdef __DEMO__ |
461 | 461 | app_version += " demo"; | app_version += " demo"; |
462 | 462 | std::string app_name = "Confectioner Engine Demo"; | std::string app_name = "Confectioner Engine Demo"; |
File include/fworld.h changed (mode: 100755) (index 051dd0c..3815fd2) | |||
... | ... | class World { | |
266 | 266 | std::vector<Image> images; | std::vector<Image> images; |
267 | 267 | fgl::InstanceBuffer instanceBuf; | fgl::InstanceBuffer instanceBuf; |
268 | 268 | fgl::Texture tileset; | fgl::Texture tileset; |
269 | fgl::Texture tilesetMip; | ||
269 | 270 | std::string tilesetDefinition; | std::string tilesetDefinition; |
270 | 271 | std::vector<std::vector<unsigned char>> mapInfo; | std::vector<std::vector<unsigned char>> mapInfo; |
271 | 272 | std::vector<std::vector<unsigned char>> mapEntities; | std::vector<std::vector<unsigned char>> mapEntities; |
... | ... | void World::loadMap( std::string dataPath, std::string filePath ){ | |
761 | 762 | auto &tsRoot = tsDocument.document.root; | auto &tsRoot = tsDocument.document.root; |
762 | 763 | ||
763 | 764 | // Load the image indicated by the tileset definition. | // Load the image indicated by the tileset definition. |
764 | tileset = getTexture( dataPath, viewToString( tsRoot["image"].getString() ), false ); | ||
765 | std::string tsName = viewToString( tsRoot["image"].getString() ); | ||
766 | tileset = getTexture( dataPath, tsName, false ); | ||
767 | if( tsName.find( "." ) != std::string::npos ){ | ||
768 | // Load the tileset mipmap PNG. | ||
769 | std::string mipName = | ||
770 | tsName.substr( 0, tsName.find_last_of( "." ) ) + "-mip.png"; | ||
771 | tilesetMip = getTexture( dataPath, mipName, false ); | ||
772 | } | ||
765 | 773 | // Tiled indices start at 1; offsetting to compensate. | // Tiled indices start at 1; offsetting to compensate. |
766 | 774 | tilesetInfo.resize( tsRoot["tilecount"].getUInt() + 1 ); | tilesetInfo.resize( tsRoot["tilecount"].getUInt() + 1 ); |
767 | 775 | auto tileProperties = tsRoot["tileproperties"].getObject(); | auto tileProperties = tsRoot["tileproperties"].getObject(); |
... | ... | void World::drawMapLayer( size_t pos ){ | |
1642 | 1650 | fgl::Pipeline old_pipeline = fgl::drawPipeline; | fgl::Pipeline old_pipeline = fgl::drawPipeline; |
1643 | 1651 | fgl::setPipeline( fgl::unlitInstancePipeline ); | fgl::setPipeline( fgl::unlitInstancePipeline ); |
1644 | 1652 | ||
1645 | fgl::setTexture( tileset, 0 ); | ||
1653 | // Use the tileset mipmap when less than half scale. | ||
1654 | // Don't overthink mip levels. Used for minimaps and tiny screens. | ||
1655 | fgl::setTexture( | ||
1656 | ( tilesetMip.success && scale < 0.5 ) ? tilesetMip : tileset, | ||
1657 | 0 | ||
1658 | ); | ||
1646 | 1659 | ||
1647 | 1660 | MapLayer &layer = map[pos]; | MapLayer &layer = map[pos]; |
1648 | 1661 |