Translation support for a lot of messages in party

This commit is contained in:
Mateus Etto
2018-02-17 22:17:08 +09:00
parent 34d37cefcc
commit 14798ced82
4 changed files with 92 additions and 9 deletions

View File

@@ -432,11 +432,12 @@
"worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks", "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks",
"chatQuestStarted": "Your quest, <%= questName %>, has started.", "chatQuestStarted": "Your quest, <%= questName %>, has started.",
"chatBossDamage": "<%= username %> attacks <%= bossName %> for <%= userDamage %> damage. <%= bossName %> attacks party for <%= bossDamage %> damage.", "chatBossDamage": "<%= username %> attacks <%= bossName %> for <%= userDamage %> damage. <%= bossName %> attacks party for <%= bossDamage %> damage.",
"chatBossDontAttack": "<%= bossDamage %> does not attack, because it respects the fact that there are some bugs post-maintenance and it doesn't want to hurt anyone unfairly. It will continue its rampage soon!", "chatBossDontAttack": "<%= bossName %> does not attack, because it respects the fact that there are some bugs post-maintenance and it doesn't want to hurt anyone unfairly. It will continue its rampage soon!",
"chatBossDefeated": "You defeated <%= bossName %>! Questing party members receive the rewards of victory.", "chatBossDefeated": "You defeated <%= bossName %>! Questing party members receive the rewards of victory.",
"chatFindItems": "<%= username %> found <%= itemName %>.", "chatFindItems": "<%= username %> found <%= items %>.",
"chatItemQuestFinish": "All items found! Party has received their rewards.", "chatItemQuestFinish": "All items found! Party has received their rewards.",
"chatCastSpell": "<%= username %> casts <%= spellName %> <%= targetText %>.", "chatCastSpellParty": "<%= username %> casts <%= spellName %> for the party.",
"chatCastSpellUser": "<%= username %> casts <%= spellName %> on <%= target %>.",
"chatQuestAborted": "<%= username %> aborted the party quest <%= questName %>.", "chatQuestAborted": "<%= username %> aborted the party quest <%= questName %>.",
"tavernBossTired": "<%= bossName %> tries to unleash ${quest.boss.rage.title('en')} but is too tired." "tavernBossTired": "<%= bossName %> tries to unleash ${quest.boss.rage.title('en')} but is too tired."
} }

View File

@@ -422,7 +422,11 @@ api.abortQuest = {
if (user._id !== group.leader && user._id !== group.quest.leader) throw new NotAuthorized(res.t('onlyLeaderAbortQuest')); if (user._id !== group.leader && user._id !== group.quest.leader) throw new NotAuthorized(res.t('onlyLeaderAbortQuest'));
let questName = questScrolls[group.quest.key].text('en'); let questName = questScrolls[group.quest.key].text('en');
group.sendChat(`\`${user.profile.name} aborted the party quest ${questName}.\``); group.sendChat(`\`${user.profile.name} aborted the party quest ${questName}.\``, null, null, {
'type': 'quest_abort',
'user': user._id,
'quest': group.quest.key,
});
let memberUpdates = User.update({ let memberUpdates = User.update({
'party._id': groupId, 'party._id': groupId,

View File

@@ -735,7 +735,22 @@ api.castSpell = {
if (party && !spell.silent) { if (party && !spell.silent) {
let message = `\`${user.profile.name} casts ${spell.text()}${targetType === 'user' ? ` on ${partyMembers.profile.name}` : ' for the party'}.\``; let message = `\`${user.profile.name} casts ${spell.text()}${targetType === 'user' ? ` on ${partyMembers.profile.name}` : ' for the party'}.\``;
party.sendChat(message); if (targetType === 'user') {
party.sendChat(message, null, null, {
'type': 'spell_cast_user',
'user': user._id,
'class': klass,
'spell': spellId,
'target': partyMember._id,
});
} else {
party.sendChat(message, null, null, {
'type': 'spell_cast_party',
'user': user._id,
'class': klass,
'spell': spellId,
});
}
await party.save(); await party.save();
} }
} }

View File

@@ -338,19 +338,68 @@ async function translateSystemMessages(group, user) {
group.chat[i].text = '`' + shared.i18n.t('chatBossDamage', {'username': usernames[group.chat[i].info.user], 'bossName': questScrolls[group.chat[i].info.quest].boss.name(user.preferences.language), 'userDamage': group.chat[i].info.userDamage, 'bossDamage': group.chat[i].info.bossDamage}, user.preferences.language) + '`'; group.chat[i].text = '`' + shared.i18n.t('chatBossDamage', {'username': usernames[group.chat[i].info.user], 'bossName': questScrolls[group.chat[i].info.quest].boss.name(user.preferences.language), 'userDamage': group.chat[i].info.userDamage, 'bossDamage': group.chat[i].info.bossDamage}, user.preferences.language) + '`';
break; break;
case 'boss_dont_attack': case 'boss_dont_attack':
group.chat[i].text = '`' + shared.i18n.t('chatBossDontAttack', {'bossName': questScrolls[group.chat[i].info.quest].boss.name(user.preferences.language)}, user.preferences.language) + '`';
break; break;
case 'boss_rage': case 'boss_rage':
group.chat[i].text = '`' + questScrolls[group.chat[i].info.quest].boss.rage.effect(user.preferences.language) + '`'; group.chat[i].text = '`' + questScrolls[group.chat[i].info.quest].boss.rage.effect(user.preferences.language) + '`';
break; break;
case 'boss_defeated': case 'boss_defeated':
group.chat[i].text = '`' + shared.i18n.t('chatBossDefeated', {'bossName': questScrolls[group.chat[i].info.quest].boss.name(user.preferences.language)}, user.preferences.language) + '`';
break; break;
case 'user_found_items': case 'user_found_items':
if (!_.has(usernames, group.chat[i].info.user)) {
let user = await User
.findById(group.chat[i].info.user)
.select(nameFields)
.exec();
usernames[group.chat[i].info.user] = user.profile.name;
}
let foundText = _.reduce(group.chat[i].info.items, (m, v, k) => {
m.push(`${v} ${questScrolls[group.chat[i].info.quest].collect[k].text(user.preferences.language)}`);
return m;
}, []);
foundText = foundText.join(', ');
group.chat[i].text = '`' + shared.i18n.t('chatFindItems', {'username': usernames[group.chat[i].info.user], 'items': foundText}, user.preferences.language) + '`';
break; break;
case 'all_items_found': case 'all_items_found':
group.chat[i].text = '`' + shared.i18n.t('chatItemQuestFinish', user.preferences.language) + '`';
break; break;
case 'spell_cast': case 'spell_cast_party':
if (!_.has(usernames, group.chat[i].info.user)) {
let user = await User
.findById(group.chat[i].info.user)
.select(nameFields)
.exec();
usernames[group.chat[i].info.user] = user.profile.name;
}
group.chat[i].text = '`' + shared.i18n.t('chatCastSpellParty', {'username': usernames[group.chat[i].info.user], 'spellName': shared.content.spells[group.chat[i].info.class][group.chat[i].info.spell].text(user.preferences.language)}, user.preferences.language) + '`';
break;
case 'spell_cast_user':
if (!_.has(usernames, group.chat[i].info.user)) {
let user = await User
.findById(group.chat[i].info.user)
.select(nameFields)
.exec();
usernames[group.chat[i].info.user] = user.profile.name;
}
if (!_.has(usernames, group.chat[i].info.target)) {
let target = await User
.findById(group.chat[i].info.target)
.select(nameFields)
.exec();
usernames[group.chat[i].info.target] = user.profile.name;
}
group.chat[i].text = '`' + shared.i18n.t('chatCastSpellUser', {'username': usernames[group.chat[i].info.user], 'spellName': shared.content.spells[group.chat[i].info.class][group.chat[i].info.spell].text(user.preferences.language), 'target': usernames[group.chat[i].info.target]}, user.preferences.language) + '`';
break; break;
case 'quest_abort': case 'quest_abort':
if (!_.has(usernames, group.chat[i].info.user)) {
let user = await User
.findById(group.chat[i].info.user)
.select(nameFields)
.exec();
usernames[group.chat[i].info.user] = user.profile.name;
}
group.chat[i].text = '`' + shared.i18n.t('chatQuestAborted', {'username': usernames[group.chat[i].info.user], 'questName': questScrolls[group.chat[i].info.quest].text(user.preferences.language)}, user.preferences.language) + '`';
break; break;
case 'tavern_quest_completed': case 'tavern_quest_completed':
group.chat[i].text = '`' + questScrolls[group.chat[i].info.quest].completionChat(user.preferences.language) + '`'; group.chat[i].text = '`' + questScrolls[group.chat[i].info.quest].completionChat(user.preferences.language) + '`';
@@ -945,6 +994,10 @@ schema.methods._processBossQuest = async function processBossQuest (options) {
let playerAttack = `${user.profile.name} attacks ${quest.boss.name('en')} for ${progress.up.toFixed(1)} damage.`; let playerAttack = `${user.profile.name} attacks ${quest.boss.name('en')} for ${progress.up.toFixed(1)} damage.`;
let bossAttack = CRON_SAFE_MODE || CRON_SEMI_SAFE_MODE ? `${quest.boss.name('en')} does not attack, because it respects the fact that there are some bugs\` \`post-maintenance and it doesn't want to hurt anyone unfairly. It will continue its rampage soon!` : `${quest.boss.name('en')} attacks party for ${Math.abs(down).toFixed(1)} damage.`; let bossAttack = CRON_SAFE_MODE || CRON_SEMI_SAFE_MODE ? `${quest.boss.name('en')} does not attack, because it respects the fact that there are some bugs\` \`post-maintenance and it doesn't want to hurt anyone unfairly. It will continue its rampage soon!` : `${quest.boss.name('en')} attacks party for ${Math.abs(down).toFixed(1)} damage.`;
if (CRON_SAFE_MODE || CRON_SEMI_SAFE_MODE) { if (CRON_SAFE_MODE || CRON_SEMI_SAFE_MODE) {
group.sendChat(`\`${playerAttack}\` \`${bossAttack}\``, null, null, {
'type': 'boss_dont_attack',
'quest': group.quest.key,
});
} else { } else {
group.sendChat(`\`${playerAttack}\` \`${bossAttack}\``, null, null, { group.sendChat(`\`${playerAttack}\` \`${bossAttack}\``, null, null, {
'type': 'boss_damage', 'type': 'boss_damage',
@@ -986,7 +1039,10 @@ schema.methods._processBossQuest = async function processBossQuest (options) {
// Boss slain, finish quest // Boss slain, finish quest
if (group.quest.progress.hp <= 0) { if (group.quest.progress.hp <= 0) {
group.sendChat(`\`You defeated ${quest.boss.name('en')}! Questing party members receive the rewards of victory.\``); group.sendChat(`\`You defeated ${quest.boss.name('en')}! Questing party members receive the rewards of victory.\``, null, null, {
'type': 'boss_defeated',
'quest': quest.key,
});
// Participants: Grant rewards & achievements, finish quest // Participants: Grant rewards & achievements, finish quest
await group.finishQuest(shared.content.quests[group.quest.key]); await group.finishQuest(shared.content.quests[group.quest.key]);
@@ -1037,7 +1093,12 @@ schema.methods._processCollectionQuest = async function processCollectionQuest (
}, []); }, []);
foundText = foundText.join(', '); foundText = foundText.join(', ');
group.sendChat(`\`${user.profile.name} found ${foundText}.\``); group.sendChat(`\`${user.profile.name} found ${foundText}.\``, null, null, {
'type': 'user_found_items',
'user': user._id,
'quest': quest.key,
'items': itemsFound,
});
group.markModified('quest.progress.collect'); group.markModified('quest.progress.collect');
// Still needs completing // Still needs completing
@@ -1046,7 +1107,9 @@ schema.methods._processCollectionQuest = async function processCollectionQuest (
})) return await group.save(); })) return await group.save();
await group.finishQuest(quest); await group.finishQuest(quest);
group.sendChat('`All items found! Party has received their rewards.`'); group.sendChat('`All items found! Party has received their rewards.`', null, null, {
'type': 'all_items_found',
});
return await group.save(); return await group.save();
}; };