non working condition
This commit is contained in:
parent
6727bdeb1d
commit
84f3302418
BIN
.Types.hs.swp
Normal file
BIN
.Types.hs.swp
Normal file
Binary file not shown.
33
Main.hs
Normal file
33
Main.hs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
data CardSym = Card1 -- | Card2 | Card3 | Card4 etc etc
|
||||||
|
data TypeSym = Angel
|
||||||
|
| Character
|
||||||
|
| MainCharacter
|
||||||
|
| Instrumentality
|
||||||
|
| Battle
|
||||||
|
| Put
|
||||||
|
| Drama
|
||||||
|
| Eva
|
||||||
|
|
||||||
|
|
||||||
|
data CardInfo = CardInfo
|
||||||
|
{ ciName :: String
|
||||||
|
, ciFaction :: Faction
|
||||||
|
, ci -- etc etc etc etc etc
|
||||||
|
}
|
||||||
|
|
||||||
|
data CardMeta = CardMeta
|
||||||
|
{ cmOwner :: PlayerId
|
||||||
|
}
|
||||||
|
|
||||||
|
type CardId = Integer
|
||||||
|
type PlayerId = Integer
|
||||||
|
|
||||||
|
class SymLookup where
|
||||||
|
getSym :: CardId -> CardSym
|
||||||
|
|
||||||
|
class MetaLookup where
|
||||||
|
getMeta :: CardId -> CardMeta
|
||||||
|
|
||||||
|
class CardLookup where
|
||||||
|
getCard :: CardSym -> CardInfo
|
||||||
|
|
23
State.hs
23
State.hs
@ -1,8 +1,29 @@
|
|||||||
module State where
|
module State where
|
||||||
|
|
||||||
|
-- needed state:
|
||||||
|
-- NeoTokyo groups
|
||||||
|
-- Put cards
|
||||||
|
-- id counter
|
||||||
|
--
|
||||||
|
--
|
||||||
|
--
|
||||||
|
--
|
||||||
|
|
||||||
type Group = [MainCharacter]
|
type Group = [MainCharacter]
|
||||||
type NeoTokyo = [Group]
|
type NeoTokyo = [Group]
|
||||||
type Downed = [MainCharacter]
|
type Downed = [MainCharacter]
|
||||||
type BoardState = (NeoTokyo, Downed)
|
type Angels = [Angel]
|
||||||
|
type BoardState = (NeoTokyo, Downed, Angels)
|
||||||
data MainCharacter = Asuka | Shinji | Rei | Misato | Ritsuko | Gendo
|
data MainCharacter = Asuka | Shinji | Rei | Misato | Ritsuko | Gendo
|
||||||
deriving (Show, Eq)
|
deriving (Show, Eq)
|
||||||
|
data Angel = Sachial | Shamshel | Ramiel | Gaghiel | Israfel
|
||||||
|
| Sandalphon | Matariel | Sahaquiel | Treul | Leliel
|
||||||
|
| Bardiel | Zeruel | Arael | Armisael | Kaworu | Man | Lillith | Adam
|
||||||
|
|
||||||
|
data Card = MainCharacter | Angel | Eva | Put | Battle | Instrumentality | Character
|
||||||
|
type Deck = [Card]
|
||||||
|
type Hand = [Card]
|
||||||
|
type Discard = [Card]
|
||||||
|
type Player = (String, Hand, Deck, Discard, Instrumentality)
|
||||||
|
type Players = [Player]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user