Fix scenario editor build and update data/docs regarding shop nodes
This commit is contained in:
@@ -62,12 +62,14 @@ cShop::cShop(long preset) {
|
||||
type = eShopType::RANDOM;
|
||||
prompt = eShopPrompt::SHOPPING;
|
||||
face = 0;
|
||||
name = "Magic Shop";
|
||||
for(int i = 0; i < 10; i++)
|
||||
addSpecial(eShopItemType::TREASURE, loot_index[i]);
|
||||
} else if(preset == 'heal') {
|
||||
type = eShopType::ALLOW_DEAD;
|
||||
prompt = eShopPrompt::HEALING;
|
||||
face = 41;
|
||||
name = "Healing";
|
||||
addSpecial(eShopItemType::HEAL_WOUNDS);
|
||||
addSpecial(eShopItemType::CURE_POISON);
|
||||
addSpecial(eShopItemType::CURE_DISEASE);
|
||||
|
||||
@@ -363,7 +363,6 @@ std::istream& operator >> (std::istream& in, eSpecType& e) {
|
||||
// T - Choose button to select a town
|
||||
// i - Choose button to select an item
|
||||
// I - Choose button to select a special item
|
||||
// # - Choose button to select store item (uses ex1b for type)
|
||||
// t - Choose button to select a terrain type
|
||||
// c - Choose button to select a monster type
|
||||
// a - Choose button to select an alchemy recipe
|
||||
@@ -384,7 +383,7 @@ std::istream& operator >> (std::istream& in, eSpecType& e) {
|
||||
// / - Choose button to select generic stairway text
|
||||
// : - Choose stairway trigger conditions
|
||||
// L - Choose button to select a town lighting type
|
||||
// & - Choose button to select shop type
|
||||
// & - Choose button to select a shop
|
||||
// % - Choose button to select shop cost adjustment
|
||||
// { - Choose button to select a spell pattern
|
||||
// } - As above, but allows you to select which version of the rotateable field
|
||||
@@ -402,11 +401,11 @@ static const char*const button_dict[7][11] = {
|
||||
" ", // msg3
|
||||
" p 3 ", // pic
|
||||
" ? ", // pictype
|
||||
" # x T i M cit j", // ex1a
|
||||
" & S ss cJ", // ex1b
|
||||
" & x T i M cit j", // ex1a
|
||||
" % S ss cJ", // ex1b
|
||||
" ", // ex1c
|
||||
" tt ", // ex2a
|
||||
" % t ", // ex2b
|
||||
" t ", // ex2b
|
||||
" ", // ex2c
|
||||
}, { // one-shot nodes
|
||||
"mm md d mmm", // msg1
|
||||
|
||||
@@ -17,8 +17,6 @@
|
||||
|
||||
void cSpeech::append(legacy::talking_record_type& old, std::vector<shop_info_t>& shops){
|
||||
int i,j;
|
||||
for(i = 0; i < 200; i++)
|
||||
strlens[i] = old.strlens[i];
|
||||
for(i = 0; i < 60; i++){
|
||||
talk_nodes[i].personality = old.talk_nodes[i].personality;
|
||||
for(j = 0; j < 4; j++){
|
||||
@@ -51,7 +49,7 @@ void cSpeech::append(legacy::talking_record_type& old, std::vector<shop_info_t>&
|
||||
break;
|
||||
case 7: // Item shop
|
||||
talk_nodes[i].type = eTalkNode::SHOP;
|
||||
shops.push_back({eShopItemType::ITEM, talk_nodes[i].extras[1], talk_nodes[i].extras[2]});
|
||||
shops.push_back({eShopItemType::ITEM, talk_nodes[i].extras[1], talk_nodes[i].extras[2], talk_nodes[i].str1});
|
||||
talk_nodes[i].extras[1] = shops.size() + 5;
|
||||
talk_nodes[i].extras[2] = 0;
|
||||
break;
|
||||
@@ -64,14 +62,15 @@ void cSpeech::append(legacy::talking_record_type& old, std::vector<shop_info_t>&
|
||||
shops.push_back({
|
||||
old.talk_nodes[i].type == 9 ? eShopItemType::MAGE_SPELL : eShopItemType::PRIEST_SPELL,
|
||||
talk_nodes[i].extras[1] + 30,
|
||||
talk_nodes[i].extras[2]
|
||||
talk_nodes[i].extras[2],
|
||||
talk_nodes[i].str1
|
||||
});
|
||||
talk_nodes[i].extras[1] = shops.size() + 5;
|
||||
talk_nodes[i].extras[2] = 0;
|
||||
break;
|
||||
case 11: // Alchemy shop
|
||||
talk_nodes[i].type = eTalkNode::SHOP;
|
||||
shops.push_back({eShopItemType::ALCHEMY, talk_nodes[i].extras[1], talk_nodes[i].extras[2]});
|
||||
shops.push_back({eShopItemType::ALCHEMY, talk_nodes[i].extras[1], talk_nodes[i].extras[2], talk_nodes[i].str1});
|
||||
talk_nodes[i].extras[1] = shops.size() + 5;
|
||||
talk_nodes[i].extras[2] = 0;
|
||||
break;
|
||||
|
||||
@@ -29,6 +29,7 @@ public:
|
||||
struct shop_info_t {
|
||||
eShopItemType type;
|
||||
int first, count;
|
||||
std::string name;
|
||||
};
|
||||
|
||||
class cSpeech { // formerly talking_record_type
|
||||
@@ -42,7 +43,6 @@ public:
|
||||
std::string str1, str2;
|
||||
cNode() {std::fill(extras, extras + 4, -1);}
|
||||
};
|
||||
unsigned char strlens[200];
|
||||
cPersonality people[10];
|
||||
cNode talk_nodes[60];
|
||||
|
||||
|
||||
@@ -135,8 +135,6 @@ cTown::cTown(cScenario& scenario, bool init_strings) : scenario(scenario) {
|
||||
sign_strs[i-120] = temp_str;
|
||||
}
|
||||
|
||||
for(i = 0; i < 200; i++)
|
||||
talking.strlens[i] = 0;
|
||||
for(i = 0; i < 10; i++) {
|
||||
talking.people[i].title = "Unused";
|
||||
talking.people[i].look = "";
|
||||
|
||||
@@ -2518,6 +2518,7 @@ bool build_scenario() {
|
||||
// TODO: This will probably change drastically once the new scenario format is implemented
|
||||
|
||||
make_new_scenario(filename,width,height,default_town,grass);
|
||||
scenario.shops.push_back(cShop('heal'));
|
||||
|
||||
overall_mode = MODE_MAIN_SCREEN;
|
||||
|
||||
|
||||
@@ -292,11 +292,12 @@ short choose_text(eStrType list, unsigned short cur_choice, cDialog* parent, con
|
||||
}
|
||||
break;
|
||||
case STRT_CONTEXT:
|
||||
// TODO: This is a discontinous list, so there's probably a better way to deal with it...
|
||||
strings = *ResMgr::get<StringRsrc>("special-contexts");
|
||||
break;
|
||||
case STRT_SHOP:
|
||||
strings = {"Items", "Mage Spells", "Priest Spells", "Alchemy", "Healing", "Magic Shop: Junk", "Magic Shop: Lousy", "Magic Shop: So-so", "Magic Shop: Good", "Magic Shop: Great", "Skill Shop"};
|
||||
for(cShop& shop : scenario.shops) {
|
||||
strings.push_back(shop.getName());
|
||||
}
|
||||
break;
|
||||
case STRT_COST_ADJ:
|
||||
strings = {"Extremely Cheap", "Very Reasonable", "Pretty Average", "Somewhat Pricey", "Expensive", "Exorbitant", "Utterly Ridiculous"};
|
||||
@@ -711,18 +712,6 @@ static bool edit_spec_enc_value(cDialog& me, std::string item_hit, node_stack_t&
|
||||
if(type == eSpecType::CALL_GLOBAL) btn = 'S';
|
||||
else btn = 's';
|
||||
}
|
||||
if(btn == '#') {
|
||||
switch(eShopType(me["x1b"].getTextAsNum())) {
|
||||
case eShopType::ITEMS: btn = 'i'; break;
|
||||
case eShopType::MAGE: btn = 'A'; break;
|
||||
case eShopType::PRIEST: btn = 'P'; break;
|
||||
case eShopType::ALCHEMY: btn = 'a'; break;
|
||||
case eShopType::SKILLS: btn = 'k'; break;
|
||||
case eShopType::HEALING: case eShopType::MAGIC_GOOD: case eShopType::MAGIC_GREAT:
|
||||
case eShopType::MAGIC_JUNK: case eShopType::MAGIC_LOUSY: case eShopType::MAGIC_SO_SO:
|
||||
break;
|
||||
}
|
||||
}
|
||||
short val = me[field].getTextAsNum(), mode = (btn == 'S' || btn == '$') ? 0 : edit_stack.top().mode, store;
|
||||
short pictype = me["pictype"].getTextAsNum();
|
||||
bool choose_string = true;
|
||||
@@ -797,7 +786,7 @@ static bool edit_spec_enc_value(cDialog& me, std::string item_hit, node_stack_t&
|
||||
case '@': strt = STRT_ATTITUDE; title = "What attitude?"; break;
|
||||
case '/': strt = STRT_STAIR; title = "Which stairway text?"; break;
|
||||
case 'L': strt = STRT_LIGHT; title = "What lighting type?"; break;
|
||||
case '&': strt = STRT_SHOP; title = "What shop type?"; break;
|
||||
case '&': strt = STRT_SHOP; title = "Which shop?"; break;
|
||||
case '%': strt = STRT_COST_ADJ; title = "What cost adjust?"; break;
|
||||
case '*': strt = STRT_CONTEXT; title = "What context?"; break;
|
||||
case ':': strt = STRT_STAIR_MODE; title = "Select trigger limitations:"; break;
|
||||
@@ -810,11 +799,6 @@ static bool edit_spec_enc_value(cDialog& me, std::string item_hit, node_stack_t&
|
||||
store = choose_graphic(val, pics[btn - '0'], &me);
|
||||
if(store < 0) store = val;
|
||||
break;
|
||||
case '#':
|
||||
choose_string = false;
|
||||
store = val;
|
||||
giveError("Either you have not chosen a shop type yet, or the shop type you chose doesn't allow you to customize its items.",&me);
|
||||
break;
|
||||
default:
|
||||
choose_string = false;
|
||||
store = val;
|
||||
|
||||
@@ -1014,7 +1014,6 @@ static bool save_talk_node(cDialog& me, std::string item_hit, std::stack<short>&
|
||||
for(int i = 0; i < 4; i++)
|
||||
talk_node.extras[i] = me["extra" + std::to_string(i + 1)].getTextAsNum();
|
||||
|
||||
int n;
|
||||
switch(talk_node.type) {
|
||||
case eTalkNode::DEP_ON_SDF: case eTalkNode::SET_SDF:
|
||||
if(cre(talk_node.extras[0],0,299,"First part of Stuff Done flag must be from 0 to 299.","",&me)) return false;
|
||||
@@ -1035,20 +1034,7 @@ static bool save_talk_node(cDialog& me, std::string item_hit, std::stack<short>&
|
||||
break;
|
||||
case eTalkNode::SHOP:
|
||||
if(cre(talk_node.extras[0],0,6,"Cost adjustment must be from 0 (cheapest) to 6 (most expensive).","",&me)) return false;
|
||||
if(cre(talk_node.extras[3],0,11,"Shop type must be from 0 to 11.", "", &me)) return false;
|
||||
switch(talk_node.extras[3]) {
|
||||
case int(eShopType::ITEMS): n = scenario.scen_items.size(); break;
|
||||
case int(eShopType::MAGE): case int(eShopType::PRIEST): n = 62; break;
|
||||
case int(eShopType::ALCHEMY): n = 20; break;
|
||||
case int(eShopType::SKILLS): n = 18; break;
|
||||
default: n = 0; break;
|
||||
}
|
||||
if(n > 0) {
|
||||
if(cre(talk_node.extras[1],0,n,"First item in shop must be from 0 to " + std::to_string(n), "", &me)) return false;
|
||||
if(cre(talk_node.extras[1],1,30,"Shops cannot have more than 30 items.", "", &me)) return false;
|
||||
int last = talk_node.extras[1] + talk_node.extras[2] - 1;
|
||||
if(cre(last,0,n,"Number of items in shop cannot be such that the last item does not exist.", "", &me)) return false;
|
||||
}
|
||||
if(cre(talk_node.extras[3],0,scenario.shops.size() - 1,"Which shop must refer to an existing shop.", "", &me)) return false;
|
||||
break;
|
||||
case eTalkNode::RECEIVE_QUEST:
|
||||
if(cre(talk_node.extras[0], 0, scenario.quests.size() - 1, "Quest must be an existing quest.", "", &me)) return false;
|
||||
@@ -1160,27 +1146,8 @@ static bool select_talk_node_value(cDialog& me, std::string item_hit, const std:
|
||||
const auto& talk_node = town->talking.talk_nodes[talk_edit_stack.top()];
|
||||
if(item_hit == "chooseB") {
|
||||
int i = me["extra2"].getTextAsNum();
|
||||
switch(talk_node.extras[3]) {
|
||||
case int(eShopType::MAGE):
|
||||
i = choose_text(STRT_MAGE,i,&me,"What is the first mage spell in the shop?");
|
||||
break;
|
||||
case int(eShopType::PRIEST):
|
||||
i = choose_text(STRT_PRIEST,i,&me,"What is the first priest spell in the shop?");
|
||||
break;
|
||||
case int(eShopType::ALCHEMY):
|
||||
i = choose_text(STRT_ALCHEMY,i,&me,"What is the first recipe in the shop?");
|
||||
break;
|
||||
case int(eShopType::ITEMS):
|
||||
i = choose_text(STRT_ITEM,i,&me,"What is the first item in the shop?");
|
||||
break;
|
||||
case int(eShopType::SKILLS):
|
||||
i = choose_text(STRT_SKILL,i,&me,"What is the first skill in the shop?");
|
||||
break;
|
||||
default:
|
||||
giveError("The shop type you've chosen doesn't support item customization!", &me);
|
||||
break;
|
||||
}
|
||||
me["extra1"].setTextToNum(i);
|
||||
i = choose_text(STRT_SHOP,i,&me,"Which shop?");
|
||||
me["extra2"].setTextToNum(i);
|
||||
} else if(item_hit == "chooseA") {
|
||||
int spec = me["extra1"].getTextAsNum();
|
||||
int mode = talk_node.type == eTalkNode::CALL_TOWN_SPEC ? 2 : 0;
|
||||
|
||||
@@ -45,10 +45,10 @@ bool load_scenario(fs::path file_to_load, cScenario& scenario) {
|
||||
return load_scenario_v1(file_to_load, scenario);
|
||||
}
|
||||
|
||||
static void port_shop_spec_node(cSpecial& spec, std::vector<shop_info_t>& shops) {
|
||||
template<typename Container> static void port_shop_spec_node(cSpecial& spec, std::vector<shop_info_t>& shops, Container strs) {
|
||||
int which_shop;
|
||||
if(spec.ex1b < 4) {
|
||||
shops.push_back({eShopItemType(spec.ex1b + 1), spec.ex1a, spec.ex2a});
|
||||
shops.push_back({eShopItemType(spec.ex1b + 1), spec.ex1a, spec.ex2a, strs[spec.m1]});
|
||||
which_shop = shops.size() + 5;
|
||||
} else if(spec.ex1b == 4)
|
||||
which_shop = 5;
|
||||
@@ -174,19 +174,19 @@ bool load_scenario_v1(fs::path file_to_load, cScenario& scenario){
|
||||
// Check special nodes in case there were outdoor shops
|
||||
for(cSpecial& spec : scenario.scen_specials) {
|
||||
if(spec.type == eSpecType::ENTER_SHOP)
|
||||
port_shop_spec_node(spec, shops);
|
||||
port_shop_spec_node(spec, shops, scenario.spec_strs);
|
||||
}
|
||||
for(cOutdoors* out : scenario.outdoors) {
|
||||
for(cSpecial& spec : out->specials) {
|
||||
if(spec.type == eSpecType::ENTER_SHOP)
|
||||
port_shop_spec_node(spec, shops);
|
||||
port_shop_spec_node(spec, shops, out->spec_strs);
|
||||
}
|
||||
}
|
||||
// We'll check town nodes too, just in case.
|
||||
for(cTown* town : scenario.towns) {
|
||||
for(cSpecial& spec : town->specials) {
|
||||
if(spec.type == eSpecType::ENTER_SHOP)
|
||||
port_shop_spec_node(spec, shops);
|
||||
port_shop_spec_node(spec, shops, town->spec_strs);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -214,7 +214,7 @@ bool load_scenario_v1(fs::path file_to_load, cScenario& scenario){
|
||||
prompt = eShopPrompt::ALCHEMY;
|
||||
type = eShopType::ALLOW_DEAD;
|
||||
}
|
||||
cShop shop(type, prompt, face, 0, "");
|
||||
cShop shop(type, prompt, face, 0, info.name);
|
||||
if(info.type == eShopItemType::ITEM) {
|
||||
int end = info.first + info.count;
|
||||
end = min(end, scenario.scen_items.size());
|
||||
@@ -338,10 +338,9 @@ bool load_town_v1(fs::path scen_file, short which_town, cTown& the_town, legacy:
|
||||
return false;
|
||||
}
|
||||
port_talk_nodes(&store_talk);
|
||||
the_town.talking.append(store_talk, shops);
|
||||
|
||||
for(i = 0; i < 170; i++) {
|
||||
len = (long) (the_town.talking.strlens[i]);
|
||||
len = (long) (store_talk.strlens[i]);
|
||||
n = fread(temp_str, len, 1, file_id);
|
||||
temp_str[len] = 0;
|
||||
if(i >= 0 && i < 10)
|
||||
@@ -361,6 +360,9 @@ bool load_town_v1(fs::path scen_file, short which_town, cTown& the_town, legacy:
|
||||
}
|
||||
}
|
||||
|
||||
// Do this after strings are loaded because porting shops requires access to strings
|
||||
the_town.talking.append(store_talk, shops);
|
||||
|
||||
n = fclose(file_id);
|
||||
if(n != 0) {
|
||||
oopsError(18, 0, 0);
|
||||
|
||||
Reference in New Issue
Block a user