Act of War Wiki
autosize
"What? Those tapes are classified!"
This section of the Act of War wiki is archived, containing information from defunct fansites and wikis.
Do NOT edit any information in the archives unless it is fixing up spelling mistakes.
Quick introduction to the ParNDF language

In a few words...

ParNDF is a parallel programming language also called concurrent language.

Its main asset is the ease it provides to describe sequential or simultaneous actions to be performed.

ParNDF uses the same syntax than the NDF language.

What does it looks like ?

<ndf>
// Here, Hello and World actions are launched simultaneously, ie. both at the same time.
FirstAction is SIMU with
[
 Hello is TEffetEugDebugWin32(Affichage = 'Hello'),
 World is TEffetEugDebugWin32(Affichage = 'World'),
]

// Here, I_will_end_first and Wait_That_Never_Ends actions are launched in competition
// ie. the first that ends means the end of the others.
SecondAction is COMPET with
[
 I_will_end_first is TEffetEugDebug(Affichage = 'The Wait action will never ends !'),
 Wait_That_Never_Ends is TWaitPrecis(DureeEnSecondes = 5)
]

// Here, FirstAction and SecondAction are launched sequentially, ie. one after the other.
main is SEQ with
[
 FirstAction,
 SecondAction
]
</ndf>