File base/items.json changed (mode: 100644) (index ac3bff4..5a3ce84) |
77 |
77 |
"icon": "icons/fire.png" |
"icon": "icons/fire.png" |
78 |
78 |
}, |
}, |
79 |
79 |
"Apple": { // This is an unbaked apple with an entity that overrides the default entity when placed in the world. |
"Apple": { // This is an unbaked apple with an entity that overrides the default entity when placed in the world. |
|
80 |
|
"name_el": "Greek translation here", |
|
81 |
|
"name_zh": "Chinese translation here", |
80 |
82 |
"icon": "icons/apple-raw.png", |
"icon": "icons/apple-raw.png", |
81 |
83 |
"stack": 9, |
"stack": 9, |
82 |
84 |
"flavor": 20, |
"flavor": 20, |
|
116 |
118 |
} |
} |
117 |
119 |
}, |
}, |
118 |
120 |
"Baked Apple": { // Baked version of the above. |
"Baked Apple": { // Baked version of the above. |
|
121 |
|
"name_el": "Greek translation here", |
|
122 |
|
"name_zh": "Chinese translation here", |
119 |
123 |
"icon": "icons/apple-baked.png", |
"icon": "icons/apple-baked.png", |
120 |
124 |
"stack": 9, |
"stack": 9, |
121 |
125 |
"flavor": 25, |
"flavor": 25, |
|
157 |
161 |
} |
} |
158 |
162 |
}, |
}, |
159 |
163 |
"Raw Fillet": { // A simple non-edible item with a recipe and a byproduct. Set flavor to > 0 to make it edible. |
"Raw Fillet": { // A simple non-edible item with a recipe and a byproduct. Set flavor to > 0 to make it edible. |
|
164 |
|
"name_el": "Greek translation here", |
|
165 |
|
"name_zh": "Chinese translation here", |
160 |
166 |
"icon": "icons/fillet-raw.png", |
"icon": "icons/fillet-raw.png", |
161 |
167 |
"stack": 9, |
"stack": 9, |
162 |
168 |
"flavor": 0, |
"flavor": 0, |
|
169 |
175 |
"byproducts": { "Lard": 1 } |
"byproducts": { "Lard": 1 } |
170 |
176 |
}, |
}, |
171 |
177 |
"Pastry Crust": { // A simple edible item with a recipe. |
"Pastry Crust": { // A simple edible item with a recipe. |
|
178 |
|
"name_el": "Greek translation here", |
|
179 |
|
"name_zh": "Chinese translation here", |
172 |
180 |
"icon": "icons/pastrycrust.png", |
"icon": "icons/pastrycrust.png", |
173 |
181 |
"stack": 9, |
"stack": 9, |
174 |
182 |
"flavor": 20, |
"flavor": 20, |
|
180 |
188 |
"recipe": { "Flour": 1, "Lard": 1 } |
"recipe": { "Flour": 1, "Lard": 1 } |
181 |
189 |
}, |
}, |
182 |
190 |
"Ghost Pepper": { // When eaten, damages health (because sweetness is -9999) and runs a script. (See calculations in the Eat function in confec.cpp.) |
"Ghost Pepper": { // When eaten, damages health (because sweetness is -9999) and runs a script. (See calculations in the Eat function in confec.cpp.) |
|
191 |
|
"name_el": "Greek translation here", |
|
192 |
|
"name_zh": "Chinese translation here", |
183 |
193 |
"icon": "icons/pepper-ghost.png", |
"icon": "icons/pepper-ghost.png", |
184 |
194 |
"stack": 9, |
"stack": 9, |
185 |
195 |
"flavor": 30, |
"flavor": 30, |
File confec.cpp changed (mode: 100644) (index 955e382..6af9113) |
... |
... |
void DrawInventory( |
5530 |
5530 |
&& fgl::mouseX >= item_x |
&& fgl::mouseX >= item_x |
5531 |
5531 |
&& fgl::mouseX < item_x + tex.width * scale ){ |
&& fgl::mouseX < item_x + tex.width * scale ){ |
5532 |
5532 |
// Display item name. |
// Display item name. |
5533 |
|
target_name = item.first; |
|
|
5533 |
|
auto it = world.items[item.first].names.find( language ); |
|
5534 |
|
if( it == world.items[item.first].names.end() ){ |
|
5535 |
|
target_name = item.first; |
|
5536 |
|
}else{ |
|
5537 |
|
target_name = it->second; |
|
5538 |
|
} |
5534 |
5539 |
if( mouseDownLeft && selections.size() > i ){ |
if( mouseDownLeft && selections.size() > i ){ |
5535 |
5540 |
// Toggle item selection. |
// Toggle item selection. |
5536 |
5541 |
selections[i] = !selections[i]; |
selections[i] = !selections[i]; |
|
... |
... |
void DrawSpecialItems( |
5587 |
5592 |
&& fgl::mouseX < item_x + tex.width * scale ){ |
&& fgl::mouseX < item_x + tex.width * scale ){ |
5588 |
5593 |
selected = true; |
selected = true; |
5589 |
5594 |
// Display the item name. |
// Display the item name. |
|
5595 |
|
// Special item names are set in localized scripts. |
5590 |
5596 |
target_name = item.name; |
target_name = item.name; |
5591 |
5597 |
if( mouseDownLeft ){ |
if( mouseDownLeft ){ |
5592 |
5598 |
// Do not propagate the click. |
// Do not propagate the click. |
|
... |
... |
void GameLoop( double d ){ |
6392 |
6398 |
if( fgl::mouseX >= offset_x && fgl::mouseY >= offset_y |
if( fgl::mouseX >= offset_x && fgl::mouseY >= offset_y |
6393 |
6399 |
&& fgl::mouseX < ingredient_x |
&& fgl::mouseX < ingredient_x |
6394 |
6400 |
&& fgl::mouseY < offset_y + item.icon.height * round_scale ){ |
&& fgl::mouseY < offset_y + item.icon.height * round_scale ){ |
6395 |
|
target_name = r.first; |
|
|
6401 |
|
// Display the item name. |
|
6402 |
|
auto it = world.items[r.first].names.find( language ); |
|
6403 |
|
if( it == world.items[r.first].names.end() ){ |
|
6404 |
|
target_name = r.first; |
|
6405 |
|
}else{ |
|
6406 |
|
target_name = it->second; |
|
6407 |
|
} |
6396 |
6408 |
} |
} |
6397 |
6409 |
for( auto &ingredient : item.recipe ){ |
for( auto &ingredient : item.recipe ){ |
6398 |
6410 |
auto &tex = world.items[ingredient.first].icon; |
auto &tex = world.items[ingredient.first].icon; |
|
... |
... |
void GameLoop( double d ){ |
6453 |
6465 |
); |
); |
6454 |
6466 |
int total = GetTradingTotal(); |
int total = GetTradingTotal(); |
6455 |
6467 |
fgl::drawText( |
fgl::drawText( |
6456 |
|
" You gain: " + std::string( total < 0 ? "-$" : "$" ) |
|
|
6468 |
|
" You will be payed: " + std::string( total < 0 ? "-$" : "$" ) |
6457 |
6469 |
+ std::to_string( std::abs( total ) ), |
+ std::to_string( std::abs( total ) ), |
6458 |
6470 |
font_vn, |
font_vn, |
6459 |
6471 |
offset_x, |
offset_x, |
|
... |
... |
void GameLoop( double d ){ |
6593 |
6605 |
if( show_cursor |
if( show_cursor |
6594 |
6606 |
&& fgl::mouseY < tex_boxes.height * round_scale |
&& fgl::mouseY < tex_boxes.height * round_scale |
6595 |
6607 |
&& fgl::mouseX >= itemOffX && fgl::mouseX < itemOffX + tex.width * round_scale ){ |
&& fgl::mouseX >= itemOffX && fgl::mouseX < itemOffX + tex.width * round_scale ){ |
6596 |
|
// Display item name. |
|
6597 |
|
target_name = item.first; |
|
|
6608 |
|
// Display the item name. |
|
6609 |
|
auto it = world.items[item.first].names.find( language ); |
|
6610 |
|
if( it == world.items[item.first].names.end() ){ |
|
6611 |
|
target_name = item.first; |
|
6612 |
|
}else{ |
|
6613 |
|
target_name = it->second; |
|
6614 |
|
} |
6598 |
6615 |
if( mouseDownLeft ){ |
if( mouseDownLeft ){ |
6599 |
6616 |
// Do not propagate the click. |
// Do not propagate the click. |
6600 |
6617 |
mouseDownLeft = false; |
mouseDownLeft = false; |
File include/fworld.h changed (mode: 100755) (index 3815fd2..a85836b) |
... |
... |
struct EntityIndex { |
155 |
155 |
}; |
}; |
156 |
156 |
|
|
157 |
157 |
struct Item { |
struct Item { |
|
158 |
|
std::map<std::string,std::string> names; |
158 |
159 |
fgl::Texture icon; |
fgl::Texture icon; |
159 |
160 |
int stack; |
int stack; |
160 |
161 |
int flavor; |
int flavor; |
|
... |
... |
void World::loadItems( std::string filePath ){ |
936 |
937 |
// Loop through the item definitions. |
// Loop through the item definitions. |
937 |
938 |
for( auto &itemDef : allocatedDocument.document.root.getObject() ){ |
for( auto &itemDef : allocatedDocument.document.root.getObject() ){ |
938 |
939 |
std::string itemName = viewToString( itemDef.name ); |
std::string itemName = viewToString( itemDef.name ); |
|
940 |
|
// Find localized names for the item, starting with English. |
|
941 |
|
std::map<std::string,std::string> localizedNames; |
|
942 |
|
localizedNames["en"] = itemName; |
|
943 |
|
for( auto &prop : itemDef.value.getObject() ){ |
|
944 |
|
std::string propName = viewToString( prop.name ); |
|
945 |
|
if( propName.length() > 5 && propName.substr( 0, 5 ) == "name_" ){ |
|
946 |
|
localizedNames[propName.substr( 5 )] = |
|
947 |
|
viewToString( prop.value.getString() ); |
|
948 |
|
} |
|
949 |
|
} |
939 |
950 |
std::string itemIcon = viewToString( itemDef.value["icon"].getString() ); |
std::string itemIcon = viewToString( itemDef.value["icon"].getString() ); |
940 |
951 |
std::map<std::string,int> itemRecipe, itemByproducts; |
std::map<std::string,int> itemRecipe, itemByproducts; |
941 |
952 |
// Read the recipe. |
// Read the recipe. |
|
... |
... |
void World::loadItems( std::string filePath ){ |
960 |
971 |
} |
} |
961 |
972 |
// Add the item. |
// Add the item. |
962 |
973 |
items[itemName] = { |
items[itemName] = { |
|
974 |
|
localizedNames, |
963 |
975 |
getTexture( dataPath, itemIcon, false ), |
getTexture( dataPath, itemIcon, false ), |
964 |
976 |
itemDef.value["stack"] ? itemDef.value["stack"].getInt() : 1, |
itemDef.value["stack"] ? itemDef.value["stack"].getInt() : 1, |
965 |
977 |
itemDef.value["flavor"].getInt(), |
itemDef.value["flavor"].getInt(), |