Diferenças entre edições de "Modificações:Dados climáticos"

Fonte: Stardew Valley Wiki
Saltar para a navegação Saltar para a pesquisa
(Tradução continuada, textos de diálogo ainda carecem de tradução)
Linha 77: Linha 77:
 
| verão 1
 
| verão 1
 
| <tt>weather_sunny</tt>
 
| <tt>weather_sunny</tt>
| <tt>newday</tt> and <tt>tv</tt>
+
| <tt>newday</tt> e <tt>tv</tt>
 
|-
 
|-
 
| verão 11
 
| verão 11
Linha 97: Linha 97:
 
| outono 1
 
| outono 1
 
| <tt>weather_sunny</tt>
 
| <tt>weather_sunny</tt>
| <tt>newday</tt> and <tt>tv</tt>
+
| <tt>newday</tt> e <tt>tv</tt>
 
|-
 
|-
 
| outono 16
 
| outono 16
Linha 109: Linha 109:
 
| inverno 1
 
| inverno 1
 
| <tt>weather_sunny</tt>
 
| <tt>weather_sunny</tt>
| <tt>newday</tt> and <tt>tv</tt>
+
| <tt>newday</tt> e <tt>tv</tt>
 
|-
 
|-
 
| inverno 8
 
| inverno 8
Linha 141: Linha 141:
 
# Se hoje é um casamento, define o clima como <tt>weather_wedding</tt>.
 
# Se hoje é um casamento, define o clima como <tt>weather_wedding</tt>.
 
# Define <tt>Game1::wasRainingYesterday</tt> com base em se havia chuva ou tempestade.
 
# Define <tt>Game1::wasRainingYesterday</tt> com base em se havia chuva ou tempestade.
# Redefine todos os sinalizadores de tempo e os coloca no seguinte padrão
+
# Redefine todos os sinalizadores de tempo e os coloca no seguinte padrão:
## Se vai haver chuva ou tempestade, ajusta o sinal de chuva para true
+
## Se vai haver chuva ou tempestade, ajusta o sinal de chuva para true;
## Se vai haver uma tempestade, ajusta o sinal de tempestade para true
+
## Se vai haver uma tempestade, ajusta o sinal de tempestade para true;
## Se o tempo é (ensolarado, detritos) ou (festival, nevando, casamento), limpa todos os sinalizadores
+
## Se o tempo é (ensolarado, detritos) ou (festival, nevando, casamento), limpa todos os sinalizadores;
## Se estiver negando, define nevando para true
+
## Se estiver nevando, define nevando para true;
## Em seguida, define a música com base nisto
+
## Em seguida, define a música com base nisto;
## Limpa a matriz meteorológica de detritos e os sinalizadores
+
## Limpa a matriz meteorológica de detritos e os sinalizadores;
## if bloom isn't null, clear it's visibility
+
## Se o pólen não for nulo, limpa sua visibilidade;
## If the wedding is debris, populate the debris array.
+
## Se o casamento é detrito, popula o array de detritos;
# If it's not raining, and the chance to rain tomorrow is less than .1, it will try to create a bloom day.
+
# Se não está chovendo e a chance de chover amanhã é menor que 0,1, o jogo tentará criar um dia com pólen.
# It then calculates the rain chance for tomorrow. It follows the following algorithm
+
# O jogo então calcula a chance de chuva para amanhã. Ele segue o seguinte algoritmo:
## Check to see if it's summer.
+
## Checa se é verão:
### If not, check to see if it's winter.
+
### Se não é verão, checa se é inverno:
#### If it's not, the rain chance is .183
+
#### Se não é inverno, a chance de chuva é de 0,183;
#### Else, it's .63  
+
#### Senão, é 0,63;
### If it is, it uses the following: Check if it's day 1.
+
### Se é verão, o jogo usa o seguinte: Checa se é o dia 1;
#### If it's not, the chance is .12 + <tt>Game1::dayOfMonth</tt> * 3/1000
+
#### Se não é, a chance é de 0,12 + <tt>Game1::dayOfMonth</tt> * 3/1000;
#### If it is, the chance is 0. Which.. is kinda redundant, as the force days take care of this.
+
#### Se é, a chance é 0. O que.. é meio redundante, já que os dias de clima fixo já cuidam disso;
# Check to see if a random number is less than the odds. If it is, it follows the following algorithm
+
# Checa se um número randômico é menor do que as chances. Se sim, o jogo segue o seguinte algoritmo:
## Set <tt>Game1::weatherForTomorrow</tt> to <tt>weather_rain</tt>
+
## Define <tt>Game1::weatherForTomorrow</tt> para <tt>weather_rain</tt>;
## If:
+
## Se:
### It's summer, and if a random number is less than .85
+
### É verão e o número randômico é menor que 0,85;
### Or If it's not winter, and if a random number is less than .25 AND the day of the month is more than 2 and more than 27 days have been played
+
### Ou se não é inverno e se o número randômico é menor que 0,25 E o dia do mês é maior que 2 e mais do que 27 dias já foram jogados;
### Set <tt>Game1::weatherForTomorrow</tt> to <tt>weather_lightning</tt>
+
### Define <tt>Game1::weatherForTomorrow</tt> para <tt>weather_lightning</tt>
## If it is winter
+
## Se e inverno:
### Set <tt>Game1::weatherForTomorrow</tt> to <tt>weather_snow</tt>
+
### Define <tt>Game1::weatherForTomorrow</tt> para <tt>weather_snow</tt>
# Else, if it's over the rain odds.
+
# Senão, se o número for maior que a chance de chover:
## If you've played less than 3 days.
+
## Se você jogou menos que 3 dias:
## Or: if
+
## Ou, se:
### It's not spring or a random number is greater than or equal to .2 (so 80%) and spring.
+
### Não é primavera ou um número randômico é igual ou maior a 0,2 (então 80%) e é primavera;
### And it's not fall or a random number is greater than or equal to .6 (so 40%) and fall.
+
### E não é outono ou um número randômico é maior ou igual a 0,6 (então 40%) e é outono;
### Or: If there is a wedding today
+
### Ou, se é um dia de casamento hoje:
#### Set <tt>Game1::weatherForTomorrow</tt> to <tt>weather_sunny</tt> if true
+
#### Define <tt>Game1::weatherForTomorrow</tt> para <tt>weather_sunny</tt> se verdadeiro;
#### Set <tt>Game1::weatherForTomorrow</tt> to <tt>weather_debris</tt> if false
+
#### Define <tt>Game1::weatherForTomorrow</tt> para <tt>weather_debris</tt> se falso;
## Check if tomorrow is a festival, and set weather to <tt>weather_festival</tt> if true.
+
## Checa se amanhã e um festival e define o clima para <tt>weather_festival</tt> se verdadeiro;
## Again force the 3rd day to be <tt>weather_rain</tt>
+
## Novamente força o terceiro dia a ser <tt>weather_rain</tt>;
  
At this point, the main function is done setting weather.
+
Nesse ponto, a função principal do jogo termina a definição do clima.
  
===TV Channel===
+
===Previsão do tempo===
The TV checks the weather, but will occasionally set it on certain days. It follows the following chart:
+
A TV checa o clima, mas vai ocasionalmente defini-lo em certos dias. Isso e mostrado na seguinte tabela.
  
The TV force sets by:
+
A TV define o clima nos dias:
  
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
! date
+
! data
! weather
+
! clima
 
|-
 
|-
| spring 1
+
| primavera 1
 
| <tt>weather_sunny</tt>¹
 
| <tt>weather_sunny</tt>¹
 
|-
 
|-
| spring 3
+
| primavera 3
 
| <tt>weather_rainy</tt>¹
 
| <tt>weather_rainy</tt>¹
 
|-
 
|-
| summer 1
+
| verão1
 
| <tt>weather_sunny</tt>¹
 
| <tt>weather_sunny</tt>¹
 
|-
 
|-
| fall 1
+
| outono 1
 
| <tt>weather_sunny</tt>¹
 
| <tt>weather_sunny</tt>¹
 
|-
 
|-
| winter 1
+
| inverno 1
 
| <tt>weather_sunny</tt>¹
 
| <tt>weather_sunny</tt>¹
 
|}
 
|}
  
<small>¹ Also set (and thus overridden) by the <tt>Game1::newDayAfterFade()</tt> method.</small><br />
+
<small>¹ Também definido (e portanto sobrescrito) pelo método <tt>Game1::newDayAfterFade()</tt>.</small><br />
  
The TV will check the weather and show the following message:
+
A TV irá checar o clima e mostrará a seguinte mensagem:
  
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
! weather
+
! clima
! message
+
! menssagem
 
|-
 
|-
| sunny or wedding
+
| ensolarado ou casamento
| 50% chance each:
+
| 50% de chance cada:
 
* "It's going to be clear and sunny all day."
 
* "It's going to be clear and sunny all day."
 
* "It's going to be a beautiful, sunny day tommorow!"
 
* "It's going to be a beautiful, sunny day tommorow!"
 
|-
 
|-
| rain
+
| chuva
 
| "It's going to rain all day tomorrow"
 
| "It's going to rain all day tomorrow"
 
|-
 
|-
| debris
+
| deritos
| Per conditions:
+
| Por condições:
# If spring: "Partially cloudy with a light breeze. Expect lots of pollen!"
+
# Se primavera: "Partially cloudy with a light breeze. Expect lots of pollen!"
# If not fall: "It's going to snow all day. Make sure you bundle up, folks!" and defaults with: "It's going to be cloudy, with gusts of wind throught the day."
+
# Se não outono: "It's going to snow all day. Make sure you bundle up, folks!" e o seu padrão é: "It's going to be cloudy, with gusts of wind throught the day."
# If storm: "Looks like a storm is approaching. Thunder and lightning is expected."
+
# Se tempestade: "Looks like a storm is approaching. Thunder and lightning is expected."
# If festival, it attempts to read the festival data. If it fails, it will say "Um... that's odd. My information sheet just says 'null'. This is embarrassing..." If it succeeds, it will read out where it is and when it is.
+
# Se festival, o jogo tenta ler as informações do festival. Se ele falhar, a seguinte mensagem será mostrada "Um... that's odd. My information sheet just says 'null'. This is embarrassing..." Se ele tiver sucesso ele falará quando e onde é o festival.
# If snow, a 50% chance of one of two strings: "Expect a few inches of snow tomorrow" or "Bundle up, folks. It's going to snow tomorrow!"
+
# Se nevar, tem 50% de chance entre dois possíveis diálogos: "Expect a few inches of snow tomorrow" ou "Bundle up, folks. It's going to snow tomorrow!"
 
|-
 
|-
| ''any other''
+
| ''qualquer outro''
| Returns an empty string (should never happen).
+
| Retorna uma string vazia (nunca deve acontecer).
 
|}
 
|}
  

Revisão das 19h09min de 17 de dezembro de 2019

Índice

Robin building.png
“Ainda tenho muito trabalho a fazer”
— Robin

Tradução incompleta

Este artigo ou seção não foi completamente traduzido para o português. Você está convidado a ajudar na sua construção editando-o
Última edição por CodingBeats em 2019-12-17 19:09:05.

Esta página documenta como é gerado o clima dentro do jogo.

Dados

O clima é controlado integralmente pelo campo Game1::weatherForTomorrow. Os possível valores são:

valor constante clima
0 weather_sunny Ensolarado
1 weather_rain Chovendo
2 weather_debris Ventando
3 weather_lightning Tempestade
4 weather_festival Festival
5 weather_snow Neve
6 weather_wedding Casamento

Algoritmo

Clima fixo

Certas datas possuem sempre o mesmo clima:

data clima sobrescrito por
primavera 1 weather_sunny newday e tv
primevera 2 (ano 1) weather_sunny newday
primavera 3 (ano 1) weather_rain newday
primavera 4 (ano 1) weather_sunny newday
primavera 13 weather_festival newday
primavera 24 weather_festival newday
verão 1 weather_sunny newday e tv
verão 11 weather_festival newday
verão 13 weather_lightning newday
verão 26 weather_lightning newday
verão 28 weather_festival newday
outono 1 weather_sunny newday e tv
outono 16 weather_festival newday
outono 27 weather_festival newday
inverno 1 weather_sunny newday e tv
inverno 8 weather_festival newday
inverno 14 weather_sunny newday
inverno 15 weather_sunny newday
inverno 16 weather_sunny newday
inverno 25 weather_festival newday

Geração do clima

O clima em Stardew Valley é definido dentro da função Game1::newDayAfterFade() (após o código de mudança de dia, mas antes do evento do SMAPI SaveEvents.BeforeSave).

O jogo segue estes passos para decidir que clima e detritos serão definidos para o dia seguinte:

  1. Verifique o clima fixo.
  2. Se hoje é um festival, define o clima como weather_festival.
  3. Se hoje é um casamento, define o clima como weather_wedding.
  4. Define Game1::wasRainingYesterday com base em se havia chuva ou tempestade.
  5. Redefine todos os sinalizadores de tempo e os coloca no seguinte padrão:
    1. Se vai haver chuva ou tempestade, ajusta o sinal de chuva para true;
    2. Se vai haver uma tempestade, ajusta o sinal de tempestade para true;
    3. Se o tempo é (ensolarado, detritos) ou (festival, nevando, casamento), limpa todos os sinalizadores;
    4. Se estiver nevando, define nevando para true;
    5. Em seguida, define a música com base nisto;
    6. Limpa a matriz meteorológica de detritos e os sinalizadores;
    7. Se o pólen não for nulo, limpa sua visibilidade;
    8. Se o casamento é detrito, popula o array de detritos;
  6. Se não está chovendo e a chance de chover amanhã é menor que 0,1, o jogo tentará criar um dia com pólen.
  7. O jogo então calcula a chance de chuva para amanhã. Ele segue o seguinte algoritmo:
    1. Checa se é verão:
      1. Se não é verão, checa se é inverno:
        1. Se não é inverno, a chance de chuva é de 0,183;
        2. Senão, é 0,63;
      2. Se é verão, o jogo usa o seguinte: Checa se é o dia 1;
        1. Se não é, a chance é de 0,12 + Game1::dayOfMonth * 3/1000;
        2. Se é, a chance é 0. O que.. é meio redundante, já que os dias de clima fixo já cuidam disso;
  8. Checa se um número randômico é menor do que as chances. Se sim, o jogo segue o seguinte algoritmo:
    1. Define Game1::weatherForTomorrow para weather_rain;
    2. Se:
      1. É verão e o número randômico é menor que 0,85;
      2. Ou se não é inverno e se o número randômico é menor que 0,25 E o dia do mês é maior que 2 e mais do que 27 dias já foram jogados;
      3. Define Game1::weatherForTomorrow para weather_lightning
    3. Se e inverno:
      1. Define Game1::weatherForTomorrow para weather_snow
  9. Senão, se o número for maior que a chance de chover:
    1. Se você jogou menos que 3 dias:
    2. Ou, se:
      1. Não é primavera ou um número randômico é igual ou maior a 0,2 (então 80%) e é primavera;
      2. E não é outono ou um número randômico é maior ou igual a 0,6 (então 40%) e é outono;
      3. Ou, se é um dia de casamento hoje:
        1. Define Game1::weatherForTomorrow para weather_sunny se verdadeiro;
        2. Define Game1::weatherForTomorrow para weather_debris se falso;
    3. Checa se amanhã e um festival e define o clima para weather_festival se verdadeiro;
    4. Novamente força o terceiro dia a ser weather_rain;

Nesse ponto, a função principal do jogo termina a definição do clima.

Previsão do tempo

A TV checa o clima, mas vai ocasionalmente defini-lo em certos dias. Isso e mostrado na seguinte tabela.

A TV define o clima nos dias:

data clima
primavera 1 weather_sunny¹
primavera 3 weather_rainy¹
verão1 weather_sunny¹
outono 1 weather_sunny¹
inverno 1 weather_sunny¹

¹ Também definido (e portanto sobrescrito) pelo método Game1::newDayAfterFade().

A TV irá checar o clima e mostrará a seguinte mensagem:

clima menssagem
ensolarado ou casamento 50% de chance cada:
  • "It's going to be clear and sunny all day."
  • "It's going to be a beautiful, sunny day tommorow!"
chuva "It's going to rain all day tomorrow"
deritos Por condições:
  1. Se primavera: "Partially cloudy with a light breeze. Expect lots of pollen!"
  2. Se não outono: "It's going to snow all day. Make sure you bundle up, folks!" e o seu padrão é: "It's going to be cloudy, with gusts of wind throught the day."
  3. Se tempestade: "Looks like a storm is approaching. Thunder and lightning is expected."
  4. Se festival, o jogo tenta ler as informações do festival. Se ele falhar, a seguinte mensagem será mostrada "Um... that's odd. My information sheet just says 'null'. This is embarrassing..." Se ele tiver sucesso ele falará quando e onde é o festival.
  5. Se nevar, tem 50% de chance entre dois possíveis diálogos: "Expect a few inches of snow tomorrow" ou "Bundle up, folks. It's going to snow tomorrow!"
qualquer outro Retorna uma string vazia (nunca deve acontecer).

Note: the TV will not necessarily be accurate for any other day than non festival days, the first of the month and the 3rd of spring, which are force-set by the Game1::newDayAfterFade method. Farmhands (and not host players) may not even get that accuracy for the first of the month and 3rd of spring.

Note 2: The Night Market is not considered a festival for the purposes of weather.

Weather Icon

The weather icon is set in Game1::updateWeatherIcon, which sets an index in LooseSprite/Cursors.xnb:

  1. If snowing: 7.
  2. If sunny: 2.
  3. If wedding: 0.
  4. If festival: 1.
  5. If raining: 4.
  6. If stormy: 5.
  7. If spring: debris weather is 3.
  8. If summer: unset (defaults to sunny).
  9. If fall: 6.
  10. If winter: 7 (same as snowing).

Rain Totem

The rain totem (item #681) and is controlled by Object::rainTotem, which is invoked by Object::performUseAction. If tomorrow is a festival day, the item is used up but nothing happens. Otherwise, it uses up the item and sets the weather for tomorrow to weather_rain and displays the message.

Weather probability by type

This section explains the probability of each weather type. This only applies on dates with no forced weather.

Sunny

Sunny weather covers weather variables 0, 4, and 6.

  • Spring: there's an 18.3% base chance of rain (81.7% chance remaining for other weathers). If it doesn't rain, there's an 80% chance to remain sunny (except on spring 3, which will always be rainy). That means that in spring there's a 66.4% chance of sunny weather.
  • Summer: The chance of sunny weather diminishes steadily per day from 86% on summer 1 to 79.9% on summer 28. The precise chance is 1 - [13% + (.3 * day of the month)] per day, with a 0% chance on day 1.
  • Fall: identical to spring, but no forced weather.
  • Winter: there's a 63% chance of precipitation, so only a 37% chance of sunny weather.

Rainy

  • Spring: there's an 18.3% base chance of rain. If it rains, there's a 25% chance of storms except in year 1. So the rain odds in Spring is a flat 18.3% in year 1, and 13.725% in year 2 or later. It will always rain on spring 3 (year 1).
  • Summer: the chance of rainy weather increases steadily per day from 14% on summer 2 to 21.1% on Summer 27. There's an 85% chance that rain becomes storms. So you have a scale of [13% + (.3 * day of the month)] * .85 to determine your chances of rainfall.
  • Fall: same as spring, except fall in year 1 can be stormy so it's a flat 13.725% chance.
  • Winter: never rains.

Debris

Debris weather covers weather variable 2.

  • Spring: there's a 20% chance of this after rain, so approximately 16.6% chance of debris weather.
  • Summer: no debris weather.
  • Fall: there's a 60% chance for this after rain, so approximately 49.8% chance of debris weather.
  • Winter: no debris weather.

Stormy

Stormy weather covers weather variable 3.

  • Spring: 4.57% chance of storms.
  • Summer: variable chance of storms; starts at 11.9% and increases to 17.9%.
  • Fall: 4.57% chance of storms.
  • Winter: no stormy weather.

Snowy

In winter, there's a 63% chance of snow. No other season has snow.

Salvar arquivos

O arquivo salvo é um instantâneo do dia às 06h00 da manhã seguinte. O campo WeatherForTommorow foi usado para calcular o tempo, mas alterá-lo não tem efeito sobre o tempo, uma vez que os sinalizadores de tempo já foram definidos por este ponto. Para alterar o clima, você precisa definir uma dessas combinações de sinalizadores:

weather isRaining isDebrisWeather isLightning isSnowing
Ensolarado
Chuvoso
Tempestade
Detritos
Nevasca
festival
Casamento

Note: changing isDebrisWeather during an active game will not create the array. You'll need to call Game1::populateDebrisWeatherArray to get the debris populated. Correspondingly, if you're removing the debris weather flag, remember to call Game1::debrisWeather::Clear.

Notes/FAQ

  • A TV pode ser consertada substituindo-a - ou apenas usando o Entoroax's Framework.
  • Você pode definir neve e detritos a qualquer momento, o jogo simplesmente não vai.
  • Você não pode colocar detritos e chover ao mesmo tempo.