Summary: Difference between revisions

From BotF2-Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 19: Line 19:
== SUMMARY Colors ==
== SUMMARY Colors ==


* GREEN : A green situation report entry reflects a normal or informal status message
== GREEN ==
* YELLOW: A yellow situation report entry reflects a status message, where the player should consider to react.
A green situation report entry reflects a normal or informal status message
* RED   : A red siutation report entry reflects a urgend status message. The play must react.
*Science Ship gained research: not to own HomeSystem.
* BLUE : A special event, like a battle, or an event.
 
==YELLOW==
A yellow situation report entry reflects a status message, where the player should consider to react.
==RED ==
A red siutation report entry reflects a urgend status message. The play must react.
== BLUE ==
A special event, like a battle, or an event.


== Actions ==
== Actions ==
Line 40: Line 46:
* Cat=Diplomacy, Military: X has declared war against Y  
* Cat=Diplomacy, Military: X has declared war against Y  
* Cat=SpecialEvent: There is an unassigned trade route at x sector (21, 19).
* Cat=SpecialEvent: There is an unassigned trade route at x sector (21, 19).
* Cat=SpecialEvent: BlackHoleEncounter
* Cat=ColonyStatus: CreditsStolenAttacker:


=== ViewColony ===
=== ViewColony ===


* Cat=ColonyStatus: Planetary build queue is empty in the system.
* Cat=ColonyStatus: BuildQueueEmpty: Planetary build queue is empty in the system.
* Cat=Construction: AQUACULTURE_CORE constructed in sector Zakdorn.
* Cat=Construction: AQUACULTURE_CORE constructed in sector Zakdorn.
* Cat=SpecialEvent: AsteroidImpact:


=== ShowScienceScreen ===
=== ShowScienceScreen ===

Latest revision as of 13:51, 22 December 2019


Intro

see Manual#Summary display - Galaxy Panel and Option#ClientSettings.xaml

<img>http://botf2.square7.ch/wiki-files/images/_Screenshots/6-0-Summary/Summary.png</img>



as you see this screen is also called SitRep (code-intern)


see also ~6-0-Summary(Screenshots)

SUMMARY Colors

GREEN

A green situation report entry reflects a normal or informal status message

  • Science Ship gained research: not to own HomeSystem.

YELLOW

A yellow situation report entry reflects a status message, where the player should consider to react.

RED

A red siutation report entry reflects a urgend status message. The play must react.

BLUE

A special event, like a battle, or an event.

Actions

Double-CLicking a SitRepLine leads to actions:

None

  • Cat=Diplomacy: The Federation proposed a defensive alliance to the Cardassians.


CenterOnSector

shows GalaxyMap and CenterOnSector

  • Cat=Diplomacy, FirstContact: We encountered the Borg in sector Elnath.
  • Cat=Diplomacy, Military: X has declared war against Y
  • Cat=SpecialEvent: There is an unassigned trade route at x sector (21, 19).
  • Cat=SpecialEvent: BlackHoleEncounter
  • Cat=ColonyStatus: CreditsStolenAttacker:

ViewColony

  • Cat=ColonyStatus: BuildQueueEmpty: Planetary build queue is empty in the system.
  • Cat=Construction: AQUACULTURE_CORE constructed in sector Zakdorn.
  • Cat=SpecialEvent: AsteroidImpact:

ShowScienceScreen

  • Cat=Research: Research has been completed on Bio-Synthetics (Level 2).

ShowDiploScreen

  • Cat=Diplomacy, FirstContact: We encountered the Borg in sector Elnath.

SelectTaskForce

  • Cat=Research: Science Ship gained research points studying a star

SitReps

BuildQueueEmpty

  • [Serializable]
  • public class BuildQueueEmptySitRepEntry : SitRepEntry
  • {
  • private readonly int _colonyId;
  • private readonly bool _shipyardQueue;
  • public Colony Colony { get { return GameContext.Current.Universe.Get<Colony>(_colonyId); } }
  • public override SitRepCategory Categories { get { return SitRepCategory.ColonyStatus | SitRepCategory.Construction; } }
  • public override SitRepAction Action { get { return SitRepAction.ViewColony; } }
  • public override object ActionTarget { get { return Colony; } }
  • public override string SummaryText ....
  • public override bool IsPriority { get { return true; } }
  • public BuildQueueEmptySitRepEntry(Civilization owner, Colony colony, bool shipyardQueue) : base(owner, SitRepPriority.Yellow) ...