mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-25 19:24:16 +01:00
Document Dewford Trend
This commit is contained in:
parent
c40fb9288c
commit
86856098a3
@ -10,7 +10,7 @@ DewfordTown_Hall_EventScript_Girl:: @ 81FD4D0
|
||||
lock
|
||||
faceplayer
|
||||
call Common_EventScript_BufferTrendyPhrase
|
||||
special TrendyPhraseIsOld
|
||||
special IsTrendyPhraseBoring
|
||||
compare VAR_RESULT, TRUE
|
||||
goto_if_eq DewfordTown_Hall_EventScript_GirlBoredOfTrend
|
||||
msgbox DewfordTown_Hall_Text_CantImagineLifeWithoutTrend, MSGBOX_DEFAULT
|
||||
|
@ -138,7 +138,7 @@ gSpecials:: @ 81DBA64
|
||||
def_special BufferMonNickname
|
||||
def_special IsMonOTIDNotPlayers
|
||||
def_special BufferTrendyPhraseString
|
||||
def_special TrendyPhraseIsOld
|
||||
def_special IsTrendyPhraseBoring
|
||||
def_special BufferDeepLinkPhrase
|
||||
def_special GetDewfordHallPaintingNameIndex
|
||||
def_special SwapRegisteredBike
|
||||
|
@ -1402,7 +1402,7 @@
|
||||
#define FLAG_SYS_TV_HOME (SYSTEM_FLAGS + 0x30)
|
||||
#define FLAG_SYS_TV_WATCH (SYSTEM_FLAGS + 0x31)
|
||||
#define FLAG_SYS_TV_START (SYSTEM_FLAGS + 0x32)
|
||||
#define FLAG_SYS_POPWORD_INPUT (SYSTEM_FLAGS + 0x33)
|
||||
#define FLAG_SYS_CHANGED_DEWFORD_TREND (SYSTEM_FLAGS + 0x33)
|
||||
#define FLAG_SYS_MIX_RECORD (SYSTEM_FLAGS + 0x34)
|
||||
#define FLAG_SYS_CLOCK_SET (SYSTEM_FLAGS + 0x35)
|
||||
#define FLAG_SYS_NATIONAL_DEX (SYSTEM_FLAGS + 0x36)
|
||||
|
@ -52,6 +52,7 @@
|
||||
#define NUM_CONTEST_WINNERS 13
|
||||
#define UNION_ROOM_KB_ROW_COUNT 10
|
||||
#define GIFT_RIBBONS_COUNT 11
|
||||
#define SAVED_TRENDS_COUNT 5
|
||||
|
||||
#define PYRAMID_BAG_ITEMS_COUNT 10
|
||||
#define HALL_FACILITIES_COUNT 9 // 7 facilities for single mode + tower double mode + tower multi mode.
|
||||
|
@ -2,10 +2,9 @@
|
||||
#define GUARD_DEWFORDTREND_H
|
||||
|
||||
void InitDewfordTrend(void);
|
||||
void UpdateDewfordTrendPerDay(u16);
|
||||
void UpdateDewfordTrendPerDay(u16 days);
|
||||
bool8 IsPhraseTrendy(u16 *a);
|
||||
void ReceiveEasyChatPairsData(struct EasyChatPair *a, size_t b, u8 unused);
|
||||
bool8 TrySetTrendyPhrase(u16 *phrase);
|
||||
void ReceiveDewfordTrendData(struct DewfordTrend *linkedTrends, size_t size, u8 unused);
|
||||
|
||||
|
||||
#endif // GUARD_DEWFORDTREND_H
|
||||
|
@ -587,12 +587,13 @@ struct RamScript
|
||||
struct RamScriptData data;
|
||||
};
|
||||
|
||||
struct EasyChatPair
|
||||
// See dewford_trend.c
|
||||
struct DewfordTrend
|
||||
{
|
||||
u16 unk0_0:7;
|
||||
u16 unk0_7:7;
|
||||
u16 unk1_6:1;
|
||||
u16 unk2;
|
||||
u16 trendiness:7;
|
||||
u16 maxTrendiness:7;
|
||||
u16 gainingTrendiness:1;
|
||||
u16 rand;
|
||||
u16 words[2];
|
||||
}; /*size = 0x8*/
|
||||
|
||||
@ -1021,7 +1022,7 @@ struct SaveBlock1
|
||||
/*0x2BE0*/ struct MailStruct mail[MAIL_COUNT];
|
||||
/*0x2E20*/ u8 additionalPhrases[8]; // bitfield for 33 additional phrases in easy chat system
|
||||
/*0x2E28*/ OldMan oldMan;
|
||||
/*0x2e64*/ struct EasyChatPair easyChatPairs[5]; //Dewford trend [0] and some other stuff
|
||||
/*0x2e64*/ struct DewfordTrend dewfordTrends[SAVED_TRENDS_COUNT];
|
||||
/*0x2e90*/ struct ContestWinner contestWinners[NUM_CONTEST_WINNERS]; // see CONTEST_WINNER_*
|
||||
/*0x3030*/ struct DayCare daycare;
|
||||
/*0x3150*/ struct LinkBattleRecords linkBattleRecords;
|
||||
|
@ -31,7 +31,7 @@ void AlertTVThatPlayerPlayedRoulette(u16 nCoinsSpent);
|
||||
void AlertTVOfNewCoinTotal(u16 nCoinsPaidOut);
|
||||
void TryPutSecretBaseSecretsOnAir(void);
|
||||
void TryPutTodaysRivalTrainerOnAir(void);
|
||||
void sub_80EDC60(const u16 *words);
|
||||
void TryPutTrendWatcherOnAir(const u16 *words);
|
||||
void sub_80EDA80(void);
|
||||
void ReceivePokeNewsData(void *src, u32 size, u8 masterIdx);
|
||||
void sub_80F0BB8(void);
|
||||
|
@ -10,311 +10,383 @@
|
||||
#include "string_util.h"
|
||||
#include "constants/easy_chat.h"
|
||||
|
||||
// static functions
|
||||
static void sub_8122804(struct EasyChatPair *s, u16 b, u8 c);
|
||||
static bool8 sub_8122A58(struct EasyChatPair *a, struct EasyChatPair *b, u8 c);
|
||||
static void sub_8122B28(struct EasyChatPair *s);
|
||||
static bool8 SB1ContainsWords(u16 *a);
|
||||
static bool8 IsEasyChatPairEqual(u16 *words1, u16 *words2);
|
||||
static s16 GetEqualEasyChatPairIndex(struct EasyChatPair *s, struct EasyChatPair *a, u16 b);
|
||||
/*
|
||||
## Overview ##
|
||||
This file handles the "Dewford Trend", a pair of Easy Chat words
|
||||
repeated by NPCs around Dewford Hall.
|
||||
|
||||
The NPC outside Dewford Hall will ask what the player thinks of the
|
||||
current trendy phrase, and the player may submit a new pair of words.
|
||||
If the NPC thinks the submitted phrase is "trendier" than the
|
||||
current one (see TrySetTrendyPhrase), it becomes the new phrase.
|
||||
|
||||
## struct DewfordTrend ##
|
||||
Information about a Dewford trend is stored in a struct DewfordTrend.
|
||||
In addition to the two easy chat words that make up the trend's phrase,
|
||||
each trend has a few randomly generated values associated with it.
|
||||
- rand:
|
||||
This is a 16 bit value generated once when the phrase is created.
|
||||
It's used in calculations for Feebas tiles, Slot Machines, and Match Call.
|
||||
It's also used to determine how much "trendiness" is lost over time (see below).
|
||||
- trendiness / maxTrendiness:
|
||||
Initialized as a random value between 30-127 inclusive. This is used to
|
||||
compare how trendy one phrase is vs another. If a submitted phrase is
|
||||
less trendy than the current one it won't be accepted. If the trend is
|
||||
"boring" (see below) it will lose trendiness over time until it reaches 0,
|
||||
at which point it will stop being boring and gain trendiness until it
|
||||
reaches maxTrendiness (then it becomes boring again and the cycle repeats).
|
||||
- gainingTrendiness:
|
||||
This is a flag that determines whether a phrase should be gaining or losing
|
||||
trendiness. An NPC in Dewford Hall will comment on whether the current phrase
|
||||
is "boring" or not, and if it is gaining trendiness (or if it is still trendier
|
||||
than the last phrase) it is not boring. This field will always be TRUE for any
|
||||
new phrase submitted after the 1st submission.
|
||||
|
||||
## Saving trends ##
|
||||
Each time a new trendy phrase is accepted, the previous Dewford Trend is saved
|
||||
in gSaveBlock1Ptr->dewfordTrends[]. Up to SAVED_TRENDS_COUNT (5) trends may be
|
||||
saved at one time. The trends in this array are kept in sorted order from most trendy
|
||||
to least trendy. The current trendy phrase is always at gSaveBlock1Ptr->dewfordTrends[0].
|
||||
If the player mixes records with another player, their own trends are replaced with
|
||||
their mixing partner's, unless the phrase is the same, in which case the version with
|
||||
a higher trendiness value is used (see ReceiveDewfordTrendData).
|
||||
|
||||
*/
|
||||
|
||||
enum {
|
||||
SORT_MODE_NORMAL,
|
||||
SORT_MODE_MAX_FIRST,
|
||||
SORT_MODE_FULL,
|
||||
};
|
||||
|
||||
static void SortTrends(struct DewfordTrend *, u16, u8);
|
||||
static bool8 CompareTrends(struct DewfordTrend *, struct DewfordTrend *, u8);
|
||||
static void SeedTrendRng(struct DewfordTrend *);
|
||||
static bool8 IsPhraseInSavedTrends(u16 *);
|
||||
static bool8 IsEasyChatPairEqual(u16 *, u16 *);
|
||||
static s16 GetSavedTrendIndex(struct DewfordTrend *, struct DewfordTrend *, u16);
|
||||
|
||||
// text
|
||||
void InitDewfordTrend(void)
|
||||
{
|
||||
u16 i;
|
||||
|
||||
for (i = 0; i < 5; i++)
|
||||
for (i = 0; i < SAVED_TRENDS_COUNT; i++)
|
||||
{
|
||||
gSaveBlock1Ptr->easyChatPairs[i].words[0] = GetRandomEasyChatWordFromGroup(EC_GROUP_CONDITIONS);
|
||||
gSaveBlock1Ptr->dewfordTrends[i].words[0] = GetRandomEasyChatWordFromGroup(EC_GROUP_CONDITIONS);
|
||||
|
||||
if (Random() & 1)
|
||||
gSaveBlock1Ptr->easyChatPairs[i].words[1] = GetRandomEasyChatWordFromGroup(EC_GROUP_LIFESTYLE);
|
||||
gSaveBlock1Ptr->dewfordTrends[i].words[1] = GetRandomEasyChatWordFromGroup(EC_GROUP_LIFESTYLE);
|
||||
else
|
||||
gSaveBlock1Ptr->easyChatPairs[i].words[1] = GetRandomEasyChatWordFromGroup(EC_GROUP_HOBBIES);
|
||||
gSaveBlock1Ptr->dewfordTrends[i].words[1] = GetRandomEasyChatWordFromGroup(EC_GROUP_HOBBIES);
|
||||
|
||||
gSaveBlock1Ptr->easyChatPairs[i].unk1_6 = Random() & 1;
|
||||
sub_8122B28(&(gSaveBlock1Ptr->easyChatPairs[i]));
|
||||
gSaveBlock1Ptr->dewfordTrends[i].gainingTrendiness = Random() & 1;
|
||||
SeedTrendRng(&(gSaveBlock1Ptr->dewfordTrends[i]));
|
||||
}
|
||||
sub_8122804(gSaveBlock1Ptr->easyChatPairs, 5, 0);
|
||||
SortTrends(gSaveBlock1Ptr->dewfordTrends, SAVED_TRENDS_COUNT, SORT_MODE_NORMAL);
|
||||
}
|
||||
|
||||
void UpdateDewfordTrendPerDay(u16 a)
|
||||
void UpdateDewfordTrendPerDay(u16 days)
|
||||
{
|
||||
u16 i;
|
||||
|
||||
if (a != 0)
|
||||
if (days != 0)
|
||||
{
|
||||
u32 sp0 = a * 5;
|
||||
u32 clockRand = days * 5;
|
||||
|
||||
for (i = 0; i < 5; i++)
|
||||
for (i = 0; i < SAVED_TRENDS_COUNT; i++)
|
||||
{
|
||||
u32 r4;
|
||||
u32 r2 = sp0;
|
||||
struct EasyChatPair *r5 = &(gSaveBlock1Ptr->easyChatPairs[i]);
|
||||
u32 trendiness;
|
||||
u32 rand = clockRand;
|
||||
struct DewfordTrend *trend = &gSaveBlock1Ptr->dewfordTrends[i];
|
||||
|
||||
if (r5->unk1_6 == 0)
|
||||
if (!trend->gainingTrendiness)
|
||||
{
|
||||
if (r5->unk0_0 >= (u16)r2)
|
||||
// This trend is "boring"
|
||||
// Lose trendiness until it becomes 0
|
||||
if (trend->trendiness >= (u16)rand)
|
||||
{
|
||||
r5->unk0_0 -= r2;
|
||||
if (r5->unk0_0 == 0)
|
||||
r5->unk1_6 = 1;
|
||||
trend->trendiness -= rand;
|
||||
if (trend->trendiness == 0)
|
||||
trend->gainingTrendiness = TRUE;
|
||||
continue;
|
||||
}
|
||||
r2 -= r5->unk0_0;
|
||||
r5->unk0_0 = 0;
|
||||
r5->unk1_6 = 1;
|
||||
rand -= trend->trendiness;
|
||||
trend->trendiness = 0;
|
||||
trend->gainingTrendiness = TRUE;
|
||||
}
|
||||
r4 = r5->unk0_0 + r2;
|
||||
if ((u16)r4 > r5->unk0_7)
|
||||
{
|
||||
u32 sp4 = r4 % r5->unk0_7;
|
||||
r4 = r4 / r5->unk0_7;
|
||||
|
||||
r5->unk1_6 = r4 ^ 1;
|
||||
if (r5->unk1_6)
|
||||
r5->unk0_0 = sp4;
|
||||
trendiness = trend->trendiness + rand;
|
||||
if ((u16)trendiness > trend->maxTrendiness)
|
||||
{
|
||||
// Reached limit, reset trendiness
|
||||
u32 newTrendiness = trendiness % trend->maxTrendiness;
|
||||
trendiness = trendiness / trend->maxTrendiness;
|
||||
|
||||
trend->gainingTrendiness = trendiness ^ 1;
|
||||
if (trend->gainingTrendiness)
|
||||
trend->trendiness = newTrendiness;
|
||||
else
|
||||
r5->unk0_0 = r5->unk0_7 - sp4;
|
||||
trend->trendiness = trend->maxTrendiness - newTrendiness;
|
||||
}
|
||||
else
|
||||
{
|
||||
r5->unk0_0 = r4;
|
||||
// Increase trendiness
|
||||
trend->trendiness = trendiness;
|
||||
|
||||
if (r5->unk0_0 == r5->unk0_7)
|
||||
r5->unk1_6 = 0;
|
||||
// Trend has reached its max, becoming "boring" and start losing trendiness
|
||||
if (trend->trendiness == trend->maxTrendiness)
|
||||
trend->gainingTrendiness = FALSE;
|
||||
}
|
||||
}
|
||||
sub_8122804(gSaveBlock1Ptr->easyChatPairs, 5, 0);
|
||||
SortTrends(gSaveBlock1Ptr->dewfordTrends, SAVED_TRENDS_COUNT, SORT_MODE_NORMAL);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
bool8 IsPhraseTrendy(u16 *a)
|
||||
// Returns TRUE if the current trendy phrase was successfully changed to the given phrase
|
||||
// Returns FALSE otherwise
|
||||
bool8 TrySetTrendyPhrase(u16 *phrase)
|
||||
{
|
||||
struct EasyChatPair s = {0};
|
||||
struct DewfordTrend trend = {0};
|
||||
u16 i;
|
||||
|
||||
if (!SB1ContainsWords(a))
|
||||
if (!IsPhraseInSavedTrends(phrase))
|
||||
{
|
||||
if (!FlagGet(FLAG_SYS_POPWORD_INPUT))
|
||||
if (!FlagGet(FLAG_SYS_CHANGED_DEWFORD_TREND))
|
||||
{
|
||||
FlagSet(FLAG_SYS_POPWORD_INPUT);
|
||||
FlagSet(FLAG_SYS_CHANGED_DEWFORD_TREND);
|
||||
|
||||
// Make sure player couldn't have received this phrase by mixing records
|
||||
if (!FlagGet(FLAG_SYS_MIX_RECORD))
|
||||
{
|
||||
gSaveBlock1Ptr->easyChatPairs[0].words[0] = a[0];
|
||||
gSaveBlock1Ptr->easyChatPairs[0].words[1] = a[1];
|
||||
// This is the first time submitting a phrase
|
||||
// No need to check saved phrases or reset rng, just set the new words
|
||||
gSaveBlock1Ptr->dewfordTrends[0].words[0] = phrase[0];
|
||||
gSaveBlock1Ptr->dewfordTrends[0].words[1] = phrase[1];
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
s.words[0] = a[0];
|
||||
s.words[1] = a[1];
|
||||
s.unk1_6 = 1;
|
||||
sub_8122B28(&s);
|
||||
// Initialize DewfordTrend using given phrase
|
||||
trend.words[0] = phrase[0];
|
||||
trend.words[1] = phrase[1];
|
||||
trend.gainingTrendiness = TRUE;
|
||||
SeedTrendRng(&trend);
|
||||
|
||||
for (i = 0; i < 5; i++)
|
||||
for (i = 0; i < SAVED_TRENDS_COUNT; i++)
|
||||
{
|
||||
if (sub_8122A58(&s, &(gSaveBlock1Ptr->easyChatPairs[i]), 0))
|
||||
if (CompareTrends(&trend, &(gSaveBlock1Ptr->dewfordTrends[i]), SORT_MODE_NORMAL))
|
||||
{
|
||||
u16 r3 = 4;
|
||||
|
||||
while (r3 > i)
|
||||
// New trend is "trendier" than dewfordTrend[i]
|
||||
// Shift other trends back to insert new trend
|
||||
u16 j = SAVED_TRENDS_COUNT - 1;
|
||||
while (j > i)
|
||||
{
|
||||
gSaveBlock1Ptr->easyChatPairs[r3] = gSaveBlock1Ptr->easyChatPairs[r3 - 1];
|
||||
r3--;
|
||||
gSaveBlock1Ptr->dewfordTrends[j] = gSaveBlock1Ptr->dewfordTrends[j - 1];
|
||||
j--;
|
||||
}
|
||||
gSaveBlock1Ptr->easyChatPairs[i] = s;
|
||||
if(i == 4)
|
||||
sub_80EDC60(a);
|
||||
gSaveBlock1Ptr->dewfordTrends[i] = trend;
|
||||
|
||||
if (i == SAVED_TRENDS_COUNT - 1)
|
||||
TryPutTrendWatcherOnAir(phrase);
|
||||
|
||||
// If i is 0, the given phrase is the new current phrase
|
||||
return (i == 0);
|
||||
}
|
||||
}
|
||||
gSaveBlock1Ptr->easyChatPairs[4] = s;
|
||||
sub_80EDC60(a);
|
||||
|
||||
// New trend is less "trendy" than all other saved trends, put it in last
|
||||
gSaveBlock1Ptr->dewfordTrends[SAVED_TRENDS_COUNT - 1] = trend;
|
||||
TryPutTrendWatcherOnAir(phrase);
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
static void sub_8122804(struct EasyChatPair *s, u16 b, u8 c)
|
||||
static void SortTrends(struct DewfordTrend *trends, u16 numTrends, u8 mode)
|
||||
{
|
||||
u16 h;
|
||||
|
||||
for (h = 0; h < b; h++)
|
||||
u16 i;
|
||||
for (i = 0; i < numTrends; i++)
|
||||
{
|
||||
u16 i;
|
||||
|
||||
for (i = h + 1; i < b; i++)
|
||||
u16 j;
|
||||
for (j = i + 1; j < numTrends; j++)
|
||||
{
|
||||
if (sub_8122A58(&s[i], &s[h], c))
|
||||
if (CompareTrends(&trends[j], &trends[i], mode))
|
||||
{
|
||||
struct EasyChatPair temp;
|
||||
|
||||
temp = s[i];
|
||||
s[i] = s[h];
|
||||
s[h] = temp;
|
||||
struct DewfordTrend temp;
|
||||
SWAP(trends[j], trends[i], temp);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ReceiveEasyChatPairsData(struct EasyChatPair *a, size_t size, u8 unused)
|
||||
{
|
||||
u16 i, j, r3, players;
|
||||
struct EasyChatPair *buffer1, *buffer2, *src, *dst, *foo_of_buffer2;
|
||||
#define SAVED_TRENDS_SIZE (sizeof(struct DewfordTrend) * SAVED_TRENDS_COUNT)
|
||||
#define BUFFER_SIZE (SAVED_TRENDS_SIZE * MAX_LINK_PLAYERS > 0x100 ? SAVED_TRENDS_SIZE * MAX_LINK_PLAYERS : 0x100) // More space was allocated than needed
|
||||
|
||||
buffer1 = Alloc(0x100);
|
||||
if(buffer1 != NULL)
|
||||
void ReceiveDewfordTrendData(struct DewfordTrend *linkedTrends, size_t size, u8 unused)
|
||||
{
|
||||
u16 i, j, numTrends, players;
|
||||
struct DewfordTrend *linkedTrendsBuffer, *savedTrendsBuffer, *src, *dst, *temp;
|
||||
|
||||
// Exit if alloc fails
|
||||
if (!(linkedTrendsBuffer = Alloc(BUFFER_SIZE)))
|
||||
return;
|
||||
|
||||
// Exit if alloc fails
|
||||
if (!(savedTrendsBuffer = Alloc(BUFFER_SIZE)))
|
||||
{
|
||||
buffer2 = Alloc(0x100);
|
||||
if(buffer2 == NULL)
|
||||
Free(linkedTrendsBuffer);
|
||||
return;
|
||||
}
|
||||
|
||||
// Buffer the new trends being received via Record Mixing
|
||||
players = GetLinkPlayerCount();
|
||||
for (i = 0; i < players; i++)
|
||||
memcpy(&linkedTrendsBuffer[i * SAVED_TRENDS_COUNT], (u8 *)linkedTrends + i * size, SAVED_TRENDS_SIZE);
|
||||
|
||||
// Determine which of the received trends should be saved.
|
||||
// savedTrendsBuffer starts empty, and when finished will contain
|
||||
// which of the linked trends to save in the saveblock.
|
||||
src = linkedTrendsBuffer;
|
||||
dst = savedTrendsBuffer;
|
||||
numTrends = 0;
|
||||
for (i = 0; i < players; i++)
|
||||
{
|
||||
for (j = 0; j < SAVED_TRENDS_COUNT; j++)
|
||||
{
|
||||
Free(buffer1);
|
||||
}
|
||||
else
|
||||
{
|
||||
players = GetLinkPlayerCount();
|
||||
for (i = 0; i < players; i++)
|
||||
memcpy(&(buffer1[i * 5]), (u8 *)a + i * size, 40);
|
||||
src = buffer1;
|
||||
dst = buffer2;
|
||||
r3 = 0;
|
||||
for (i = 0; i < players; i++)
|
||||
s16 idx = GetSavedTrendIndex(savedTrendsBuffer, src, numTrends);
|
||||
if (idx < 0)
|
||||
{
|
||||
for (j = 0; j < 5; j++)
|
||||
// This phrase is not a currently saved trend, save it
|
||||
*(dst++) = *src;
|
||||
numTrends++;
|
||||
}
|
||||
else
|
||||
{
|
||||
// This phrase already exists as a saved phrase
|
||||
// Only overwrrite it if it's "trendier"
|
||||
temp = &savedTrendsBuffer[idx];
|
||||
if (temp->trendiness < src->trendiness)
|
||||
{
|
||||
s16 foo = GetEqualEasyChatPairIndex(buffer2, src, r3);
|
||||
if (foo < 0)
|
||||
{
|
||||
*(dst++) = *src;
|
||||
r3++;
|
||||
}
|
||||
else
|
||||
{
|
||||
foo_of_buffer2 = (struct EasyChatPair *)((u32)buffer2 + (foo * 8)); //required to do this to reverse the order of register operands in add ASM statement
|
||||
if (foo_of_buffer2->unk0_0 < src->unk0_0)
|
||||
{
|
||||
*foo_of_buffer2 = *src;
|
||||
}
|
||||
}
|
||||
src++;
|
||||
*temp = *src;
|
||||
}
|
||||
}
|
||||
sub_8122804(buffer2, r3, 2);
|
||||
src = buffer2;
|
||||
dst = gSaveBlock1Ptr->easyChatPairs;
|
||||
for (i = 0; i < 5; i++)
|
||||
*(dst++) = *(src++);
|
||||
Free(buffer1);
|
||||
Free(buffer2);
|
||||
src++;
|
||||
}
|
||||
}
|
||||
SortTrends(savedTrendsBuffer, numTrends, SORT_MODE_FULL);
|
||||
|
||||
// Overwrite current saved trends with new saved trends
|
||||
src = savedTrendsBuffer;
|
||||
dst = gSaveBlock1Ptr->dewfordTrends;
|
||||
for (i = 0; i < SAVED_TRENDS_COUNT; i++)
|
||||
*(dst++) = *(src++);
|
||||
|
||||
Free(linkedTrendsBuffer);
|
||||
Free(savedTrendsBuffer);
|
||||
}
|
||||
|
||||
void BufferTrendyPhraseString(void)
|
||||
{
|
||||
struct EasyChatPair *s = &gSaveBlock1Ptr->easyChatPairs[gSpecialVar_0x8004];
|
||||
|
||||
ConvertEasyChatWordsToString(gStringVar1, s->words, 2, 1);
|
||||
struct DewfordTrend *trend = &gSaveBlock1Ptr->dewfordTrends[gSpecialVar_0x8004];
|
||||
ConvertEasyChatWordsToString(gStringVar1, trend->words, 2, 1);
|
||||
}
|
||||
|
||||
void TrendyPhraseIsOld(void)
|
||||
// Returns TRUE if the current trendy phrase is "boring", FALSE otherwise
|
||||
// This only influences the comment of an NPC inside the Dewford Town Hall
|
||||
void IsTrendyPhraseBoring(void)
|
||||
{
|
||||
u16 result = 0;
|
||||
bool16 result = FALSE;
|
||||
|
||||
do
|
||||
{
|
||||
if (gSaveBlock1Ptr->easyChatPairs[0].unk0_0 - gSaveBlock1Ptr->easyChatPairs[1].unk0_0 > 1)
|
||||
if (gSaveBlock1Ptr->dewfordTrends[0].trendiness - gSaveBlock1Ptr->dewfordTrends[1].trendiness > 1)
|
||||
break;
|
||||
if (gSaveBlock1Ptr->easyChatPairs[0].unk1_6)
|
||||
if (gSaveBlock1Ptr->dewfordTrends[0].gainingTrendiness)
|
||||
break;
|
||||
if (!gSaveBlock1Ptr->easyChatPairs[1].unk1_6)
|
||||
if (!gSaveBlock1Ptr->dewfordTrends[1].gainingTrendiness)
|
||||
break;
|
||||
result = 1;
|
||||
result = TRUE;
|
||||
} while (0);
|
||||
|
||||
gSpecialVar_Result = result;
|
||||
}
|
||||
|
||||
// A painting hangs on the wall of the Dewford Hall
|
||||
// When interacted with it says "{trendy phrase}'S {name} is the title"
|
||||
// {name} is one of 8 pre-set words, depending on the current phrase
|
||||
// See DewfordTown_Hall_EventScript_Painting
|
||||
void GetDewfordHallPaintingNameIndex(void)
|
||||
{
|
||||
gSpecialVar_Result = (gSaveBlock1Ptr->easyChatPairs[0].words[0] + gSaveBlock1Ptr->easyChatPairs[0].words[1]) & 7;
|
||||
gSpecialVar_Result = (gSaveBlock1Ptr->dewfordTrends[0].words[0] + gSaveBlock1Ptr->dewfordTrends[0].words[1]) & 7;
|
||||
}
|
||||
|
||||
static bool8 sub_8122A58(struct EasyChatPair *a, struct EasyChatPair *b, u8 c)
|
||||
// Returns TRUE if a > b (a is "trendier" than b), FALSE if a < b (b is "trendier" than a)
|
||||
// How one trend is compared to the other depends on the mode
|
||||
// In SORT_MODE_FULL if the trends are equal then TRUE is always returned, otherwise TRUE or FALSE is returned randomly
|
||||
static bool8 CompareTrends(struct DewfordTrend *a, struct DewfordTrend *b, u8 mode)
|
||||
{
|
||||
switch (c)
|
||||
switch (mode)
|
||||
{
|
||||
case 0:
|
||||
if (a->unk0_0 > b->unk0_0)
|
||||
return 1;
|
||||
if (a->unk0_0 < b->unk0_0)
|
||||
return 0;
|
||||
if (a->unk0_7 > b->unk0_7)
|
||||
return 1;
|
||||
if (a->unk0_7 < b->unk0_7)
|
||||
return 0;
|
||||
case SORT_MODE_NORMAL:
|
||||
if (a->trendiness > b->trendiness) return TRUE;
|
||||
if (a->trendiness < b->trendiness) return FALSE;
|
||||
|
||||
if (a->maxTrendiness > b->maxTrendiness) return TRUE;
|
||||
if (a->maxTrendiness < b->maxTrendiness) return FALSE;
|
||||
break;
|
||||
case 1:
|
||||
if (a->unk0_7 > b->unk0_7)
|
||||
return 1;
|
||||
if (a->unk0_7 < b->unk0_7)
|
||||
return 0;
|
||||
if (a->unk0_0 > b->unk0_0)
|
||||
return 1;
|
||||
if (a->unk0_0 < b->unk0_0)
|
||||
return 0;
|
||||
case SORT_MODE_MAX_FIRST: // Unused
|
||||
if (a->maxTrendiness > b->maxTrendiness) return TRUE;
|
||||
if (a->maxTrendiness < b->maxTrendiness) return FALSE;
|
||||
|
||||
if (a->trendiness > b->trendiness) return TRUE;
|
||||
if (a->trendiness < b->trendiness) return FALSE;
|
||||
break;
|
||||
case 2:
|
||||
if (a->unk0_0 > b->unk0_0)
|
||||
return 1;
|
||||
if (a->unk0_0 < b->unk0_0)
|
||||
return 0;
|
||||
if (a->unk0_7 > b->unk0_7)
|
||||
return 1;
|
||||
if (a->unk0_7 < b->unk0_7)
|
||||
return 0;
|
||||
if (a->unk2 > b->unk2)
|
||||
return 1;
|
||||
if (a->unk2 < b->unk2)
|
||||
return 0;
|
||||
if (a->words[0] > b->words[0])
|
||||
return 1;
|
||||
if (a->words[0] < b->words[0])
|
||||
return 0;
|
||||
if (a->words[1] > b->words[1])
|
||||
return 1;
|
||||
if (a->words[1] < b->words[1])
|
||||
return 0;
|
||||
return 1;
|
||||
case SORT_MODE_FULL:
|
||||
if (a->trendiness > b->trendiness) return TRUE;
|
||||
if (a->trendiness < b->trendiness) return FALSE;
|
||||
|
||||
if (a->maxTrendiness > b->maxTrendiness) return TRUE;
|
||||
if (a->maxTrendiness < b->maxTrendiness) return FALSE;
|
||||
|
||||
if (a->rand > b->rand) return TRUE;
|
||||
if (a->rand < b->rand) return FALSE;
|
||||
|
||||
if (a->words[0] > b->words[0]) return TRUE;
|
||||
if (a->words[0] < b->words[0]) return FALSE;
|
||||
|
||||
if (a->words[1] > b->words[1]) return TRUE;
|
||||
if (a->words[1] < b->words[1]) return FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// Invalid mode given, or trends are equal in SORT_MODE_NORMAL or SORT_MODE_MAX_FIRST
|
||||
// Randomly pick one of the phrases
|
||||
return Random() & 1;
|
||||
}
|
||||
|
||||
static void sub_8122B28(struct EasyChatPair *s)
|
||||
static void SeedTrendRng(struct DewfordTrend *trend)
|
||||
{
|
||||
u16 r4;
|
||||
u16 rand;
|
||||
|
||||
r4 = Random() % 98;
|
||||
if (r4 > 50)
|
||||
rand = Random() % 98;
|
||||
if (rand > 50)
|
||||
{
|
||||
r4 = Random() % 98;
|
||||
if (r4 > 80)
|
||||
r4 = Random() % 98;
|
||||
rand = Random() % 98;
|
||||
if (rand > 80)
|
||||
rand = Random() % 98;
|
||||
}
|
||||
s->unk0_7 = r4 + 30;
|
||||
s->unk0_0 = (Random() % (r4 + 1)) + 30;
|
||||
s->unk2 = Random();
|
||||
trend->maxTrendiness = rand + 30;
|
||||
trend->trendiness = (Random() % (rand + 1)) + 30;
|
||||
trend->rand = Random();
|
||||
}
|
||||
|
||||
static bool8 SB1ContainsWords(u16 *a)
|
||||
static bool8 IsPhraseInSavedTrends(u16 *phrase)
|
||||
{
|
||||
u16 i;
|
||||
|
||||
for (i = 0; i < 5; i++)
|
||||
for (i = 0; i < SAVED_TRENDS_COUNT; i++)
|
||||
{
|
||||
if (IsEasyChatPairEqual(a, gSaveBlock1Ptr->easyChatPairs[i].words) != 0)
|
||||
if (IsEasyChatPairEqual(phrase, gSaveBlock1Ptr->dewfordTrends[i].words))
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
@ -332,15 +404,14 @@ static bool8 IsEasyChatPairEqual(u16 *words1, u16 *words2)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static s16 GetEqualEasyChatPairIndex(struct EasyChatPair*s, struct EasyChatPair *a, u16 b)
|
||||
static s16 GetSavedTrendIndex(struct DewfordTrend *savedTrends, struct DewfordTrend *trend, u16 numSaved)
|
||||
{
|
||||
s16 i;
|
||||
|
||||
for (i = 0; i < b; i++)
|
||||
for (i = 0; i < numSaved; i++)
|
||||
{
|
||||
if (IsEasyChatPairEqual(a->words, s->words))
|
||||
if (IsEasyChatPairEqual(trend->words, savedTrends->words))
|
||||
return i;
|
||||
s++;
|
||||
savedTrends++;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
@ -1477,8 +1477,8 @@ void ShowEasyChatScreen(void)
|
||||
break;
|
||||
case EASY_CHAT_TYPE_TRENDY_PHRASE:
|
||||
words = (u16 *)gStringVar3;
|
||||
words[0] = gSaveBlock1Ptr->easyChatPairs[0].words[0];
|
||||
words[1] = gSaveBlock1Ptr->easyChatPairs[0].words[1];
|
||||
words[0] = gSaveBlock1Ptr->dewfordTrends[0].words[0];
|
||||
words[1] = gSaveBlock1Ptr->dewfordTrends[0].words[1];
|
||||
break;
|
||||
case EASY_CHAT_TYPE_GABBY_AND_TY:
|
||||
words = gSaveBlock1Ptr->gabbyAndTyData.quote;
|
||||
@ -2958,7 +2958,7 @@ static void SetSpecialEasyChatResult(void)
|
||||
break;
|
||||
case EASY_CHAT_TYPE_TRENDY_PHRASE:
|
||||
BufferCurrentPhraseToStringVar2();
|
||||
gSpecialVar_0x8004 = IsPhraseTrendy(sEasyChatScreen->currentPhrase);
|
||||
gSpecialVar_0x8004 = TrySetTrendyPhrase(sEasyChatScreen->currentPhrase);
|
||||
break;
|
||||
case EASY_CHAT_TYPE_GOOD_SAYING:
|
||||
gSpecialVar_0x8004 = DidPlayerInputABerryMasterWifePhrase();
|
||||
|
@ -1336,7 +1336,7 @@ u16 GetSlotMachineId(void)
|
||||
static const u8 sSlotMachineIds[] = {0, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 5};
|
||||
static const u8 sSlotMachineServiceDayIds[] = {3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5};
|
||||
|
||||
u32 rnd = gSaveBlock1Ptr->easyChatPairs[0].unk0_0 + gSaveBlock1Ptr->easyChatPairs[0].unk2 + sSlotMachineRandomSeeds[gSpecialVar_0x8004];
|
||||
u32 rnd = gSaveBlock1Ptr->dewfordTrends[0].trendiness + gSaveBlock1Ptr->dewfordTrends[0].rand + sSlotMachineRandomSeeds[gSpecialVar_0x8004];
|
||||
if (GetPriceReduction(POKENEWS_GAME_CORNER))
|
||||
{
|
||||
return sSlotMachineServiceDayIds[rnd % SLOT_MACHINE_COUNT];
|
||||
|
@ -1773,7 +1773,7 @@ static bool32 sub_8196D74(int matchCallId)
|
||||
{
|
||||
int dayCount;
|
||||
int otId;
|
||||
u16 easyChatWord;
|
||||
u16 rand;
|
||||
int numRematchTrainersFought;
|
||||
int var0, var1, var2;
|
||||
|
||||
@ -1783,10 +1783,10 @@ static bool32 sub_8196D74(int matchCallId)
|
||||
dayCount = RtcGetLocalDayCount();
|
||||
otId = GetTrainerId(gSaveBlock2Ptr->playerTrainerId) & 0xFFFF;
|
||||
|
||||
easyChatWord = gSaveBlock1Ptr->easyChatPairs[0].unk2;
|
||||
rand = gSaveBlock1Ptr->dewfordTrends[0].rand;
|
||||
numRematchTrainersFought = GetNumRematchTrainersFought();
|
||||
var0 = (numRematchTrainersFought * 13) / 10;
|
||||
var1 = ((dayCount ^ easyChatWord) + (easyChatWord ^ GetGameStat(GAME_STAT_TRAINER_BATTLES))) ^ otId;
|
||||
var1 = ((dayCount ^ rand) + (rand ^ GetGameStat(GAME_STAT_TRAINER_BATTLES))) ^ otId;
|
||||
var2 = var1 % var0;
|
||||
if (var2 < numRematchTrainersFought)
|
||||
{
|
||||
|
@ -50,7 +50,7 @@ struct PlayerRecordsRS
|
||||
TVShow tvShows[TV_SHOWS_COUNT];
|
||||
PokeNews pokeNews[POKE_NEWS_COUNT];
|
||||
OldMan oldMan;
|
||||
struct EasyChatPair easyChatPairs[5];
|
||||
struct DewfordTrend dewfordTrends[SAVED_TRENDS_COUNT];
|
||||
struct RecordMixingDayCareMail dayCareMail;
|
||||
struct RSBattleTowerRecord battleTowerRecord;
|
||||
u16 giftItem;
|
||||
@ -63,7 +63,7 @@ struct PlayerRecordsEmerald
|
||||
/* 0x0c80 */ TVShow tvShows[TV_SHOWS_COUNT];
|
||||
/* 0x1004 */ PokeNews pokeNews[POKE_NEWS_COUNT];
|
||||
/* 0x1044 */ OldMan oldMan;
|
||||
/* 0x1084 */ struct EasyChatPair easyChatPairs[5];
|
||||
/* 0x1084 */ struct DewfordTrend dewfordTrends[SAVED_TRENDS_COUNT];
|
||||
/* 0x10ac */ struct RecordMixingDayCareMail dayCareMail;
|
||||
/* 0x1124 */ struct EmeraldBattleTowerRecord battleTowerRecord;
|
||||
/* 0x1210 */ u16 giftItem;
|
||||
@ -86,7 +86,7 @@ static struct SecretBase *sSecretBasesSave;
|
||||
static TVShow *sTvShowsSave;
|
||||
static PokeNews *sPokeNewsSave;
|
||||
static OldMan *sOldManSave;
|
||||
static struct EasyChatPair *sEasyChatPairsSave;
|
||||
static struct DewfordTrend *sDewfordTrendsSave;
|
||||
static struct RecordMixingDayCareMail *gUnknown_03001148;
|
||||
static void *sBattleTowerSave;
|
||||
static LilycoveLady *sLilycoveLadySave;
|
||||
@ -179,7 +179,7 @@ static void SetSrcLookupPointers(void)
|
||||
sTvShowsSave = gSaveBlock1Ptr->tvShows;
|
||||
sPokeNewsSave = gSaveBlock1Ptr->pokeNews;
|
||||
sOldManSave = &gSaveBlock1Ptr->oldMan;
|
||||
sEasyChatPairsSave = gSaveBlock1Ptr->easyChatPairs;
|
||||
sDewfordTrendsSave = gSaveBlock1Ptr->dewfordTrends;
|
||||
gUnknown_03001148 = &gUnknown_02039F9C;
|
||||
sBattleTowerSave = &gSaveBlock2Ptr->frontier.towerPlayer;
|
||||
sLilycoveLadySave = &gSaveBlock1Ptr->lilycoveLady;
|
||||
@ -194,7 +194,7 @@ static void PrepareUnknownExchangePacket(struct PlayerRecordsRS *dest)
|
||||
sub_80F14F8(dest->tvShows);
|
||||
memcpy(dest->pokeNews, sPokeNewsSave, sizeof(dest->pokeNews));
|
||||
memcpy(&dest->oldMan, sOldManSave, sizeof(dest->oldMan));
|
||||
memcpy(dest->easyChatPairs, sEasyChatPairsSave, sizeof(dest->easyChatPairs));
|
||||
memcpy(dest->dewfordTrends, sDewfordTrendsSave, sizeof(dest->dewfordTrends));
|
||||
sub_80E89F8(&dest->dayCareMail);
|
||||
EmeraldBattleTowerRecordToRuby(sBattleTowerSave, &dest->battleTowerRecord);
|
||||
|
||||
@ -211,7 +211,7 @@ static void PrepareExchangePacketForRubySapphire(struct PlayerRecordsRS *dest)
|
||||
memcpy(dest->pokeNews, sPokeNewsSave, sizeof(dest->pokeNews));
|
||||
memcpy(&dest->oldMan, sOldManSave, sizeof(dest->oldMan));
|
||||
sub_8120B70(&dest->oldMan);
|
||||
memcpy(dest->easyChatPairs, sEasyChatPairsSave, sizeof(dest->easyChatPairs));
|
||||
memcpy(dest->dewfordTrends, sDewfordTrendsSave, sizeof(dest->dewfordTrends));
|
||||
sub_80E89F8(&dest->dayCareMail);
|
||||
SanitizeDayCareMailForRuby(&dest->dayCareMail);
|
||||
EmeraldBattleTowerRecordToRuby(sBattleTowerSave, &dest->battleTowerRecord);
|
||||
@ -241,7 +241,7 @@ static void PrepareExchangePacket(void)
|
||||
memcpy(sSentRecord->emerald.pokeNews, sPokeNewsSave, sizeof(sSentRecord->emerald.pokeNews));
|
||||
memcpy(&sSentRecord->emerald.oldMan, sOldManSave, sizeof(sSentRecord->emerald.oldMan));
|
||||
memcpy(&sSentRecord->emerald.lilycoveLady, sLilycoveLadySave, sizeof(sSentRecord->emerald.lilycoveLady));
|
||||
memcpy(sSentRecord->emerald.easyChatPairs, sEasyChatPairsSave, sizeof(sSentRecord->emerald.easyChatPairs));
|
||||
memcpy(sSentRecord->emerald.dewfordTrends, sDewfordTrendsSave, sizeof(sSentRecord->emerald.dewfordTrends));
|
||||
sub_80E89F8(&sSentRecord->emerald.dayCareMail);
|
||||
memcpy(&sSentRecord->emerald.battleTowerRecord, sBattleTowerSave, sizeof(sSentRecord->emerald.battleTowerRecord));
|
||||
SanitizeEmeraldBattleTowerRecord(&sSentRecord->emerald.battleTowerRecord);
|
||||
@ -266,7 +266,7 @@ static void ReceiveExchangePacket(u32 which)
|
||||
ReceiveTvShowsData(sReceivedRecords->ruby.tvShows, sizeof(struct PlayerRecordsRS), which);
|
||||
ReceivePokeNewsData(sReceivedRecords->ruby.pokeNews, sizeof(struct PlayerRecordsRS), which);
|
||||
ReceiveOldManData(&sReceivedRecords->ruby.oldMan, sizeof(struct PlayerRecordsRS), which);
|
||||
ReceiveEasyChatPairsData(sReceivedRecords->ruby.easyChatPairs, sizeof(struct PlayerRecordsRS), which);
|
||||
ReceiveDewfordTrendData(sReceivedRecords->ruby.dewfordTrends, sizeof(struct PlayerRecordsRS), which);
|
||||
ReceiveGiftItem(&sReceivedRecords->ruby.giftItem, which);
|
||||
}
|
||||
else
|
||||
@ -277,7 +277,7 @@ static void ReceiveExchangePacket(u32 which)
|
||||
ReceiveTvShowsData(sReceivedRecords->emerald.tvShows, sizeof(struct PlayerRecordsEmerald), which);
|
||||
ReceivePokeNewsData(sReceivedRecords->emerald.pokeNews, sizeof(struct PlayerRecordsEmerald), which);
|
||||
ReceiveOldManData(&sReceivedRecords->emerald.oldMan, sizeof(struct PlayerRecordsEmerald), which);
|
||||
ReceiveEasyChatPairsData(sReceivedRecords->emerald.easyChatPairs, sizeof(struct PlayerRecordsEmerald), which);
|
||||
ReceiveDewfordTrendData(sReceivedRecords->emerald.dewfordTrends, sizeof(struct PlayerRecordsEmerald), which);
|
||||
ReceiveDaycareMailData(&sReceivedRecords->emerald.dayCareMail, sizeof(struct PlayerRecordsEmerald), which, sReceivedRecords->emerald.tvShows);
|
||||
ReceiveBattleTowerData(&sReceivedRecords->emerald.battleTowerRecord, sizeof(struct PlayerRecordsEmerald), which);
|
||||
ReceiveGiftItem(&sReceivedRecords->emerald.giftItem, which);
|
||||
|
2
src/tv.c
2
src/tv.c
@ -1972,7 +1972,7 @@ void TryPutTodaysRivalTrainerOnAir(void)
|
||||
}
|
||||
}
|
||||
|
||||
void sub_80EDC60(const u16 *words)
|
||||
void TryPutTrendWatcherOnAir(const u16 *words)
|
||||
{
|
||||
TVShow *show;
|
||||
|
||||
|
@ -108,7 +108,7 @@ static bool8 CheckFeebas(void)
|
||||
if (Random() % 100 > 49) // 50% chance of encountering Feebas
|
||||
return FALSE;
|
||||
|
||||
FeebasSeedRng(gSaveBlock1Ptr->easyChatPairs[0].unk2);
|
||||
FeebasSeedRng(gSaveBlock1Ptr->dewfordTrends[0].rand);
|
||||
for (i = 0; i != NUM_FEEBAS_SPOTS;)
|
||||
{
|
||||
feebasSpots[i] = FeebasRandom() % 447;
|
||||
|
Loading…
Reference in New Issue
Block a user