-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSituationsTable.py
42 lines (35 loc) · 1.42 KB
/
SituationsTable.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import ModuleHelper
import re
class SituationsTable( object ) :
"""This class defines SituationsTable Tables Definitions. """
def __init__(self, name, description):
"""SituationsTable Constructor. """
self.name = name
self.description = description
self.actors = description.split(", ")
def __str__(self) :
"""SituationsTable to str. """
str = "SituationsTable ( '%s' ) \n" % ( self.name )
str += "\t description: %s \n" % (self.description)
str += "\t actors: %s \n" % (self.actors)
return str
def appendVariant( self, variant ) :
"""SituationsTable Variants """
self.variants.append( variant )
@classmethod
def load( self ) :
tables = {}
data = ModuleHelper.loadFileConfig( "36intriguesFondamentales" )
nextTable = None
for line in data :
if (not line.startswith("## ") ) :
resultTableHead = re.match( "^([0-9]+\. )(.*?) - (.*)$", line)
if (resultTableHead != None) :
if (nextTable != None) :
tables[ nextTable.name ] = nextTable
nextTable = SituationsTable( resultTableHead.groups()[1], resultTableHead.groups()[2] )
if (nextTable != None) :
tables[ nextTable.name ] = nextTable
return tables