ParthenosWP4 / SSK

Development of the Standardization Survival Kit
9 stars 8 forks source link

Handle Scenario in `event` #30

Closed charlesriondet closed 5 years ago

charlesriondet commented 6 years ago

When scenarios are added as prerequisites or as extensions of another scenarios, they are referenced the following way:

<listEvent> <!-- the top listEvent -->
     <listEvent type="prerequisite"> <!-- Another listEvent for prerequisite scenarios -->
           <event type="researchScenario" ..../>
           <event type="researchScenario" ..../>
     </listEvent>
     <event type="researchStep" ..../> <!-- The steps of the scenario -->
     <event type="researchStep" ..../>
     <event type="researchStep" ..../>
     <listEvent type="postStep"> <!-- Another listEvent for extensions scenarios -->
           <event type="researchScenario" ..../>
           <event type="researchScenario" ..../>
     </listEvent>
</listEvent>

See https://github.com/ParthenosWP4/SSK/blob/master/scenarios/1_SSK_sc_loremIpsum.xml

charlesriondet commented 5 years ago

fixed