Mercurial > repos > snowblizz-super-API-ideas
annotate api/WarFoundryCore.cs @ 82:3ea0ab04352b
* Fix line terminators
no-open-ticket
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 27 Jun 2009 18:59:49 +0000 |
parents | 548cfc776f54 |
children | 2f3cafb69799 |
rev | line source |
---|---|
15 | 1 // This file (WarFoundryCore.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2009 IBBoard. |
0 | 2 // |
15 | 3 // The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license. |
0 | 4 |
5 using System; | |
6 using IBBoard.Logging; | |
7 using IBBoard.WarFoundry.API.Objects; | |
8 | |
9 namespace IBBoard.WarFoundry.API | |
10 { | |
11 public class WarFoundryCore | |
12 { | |
38
548cfc776f54
Fixes #34 - Remove "Choices" and "Base/Increment" from Category
IBBoard <dev@ibboard.co.uk>
parents:
15
diff
changeset
|
13 public static readonly int INFINITY = -1; |
82 | 14 public static event GameSystemChangedDelegate GameSystemChanged; |
0 | 15 public static event ArmyChangedDelegate ArmyChanged; |
16 | |
17 private static GameSystem system; | |
18 private static Army currentArmy; | |
19 | |
82 | 20 public static GameSystem CurrentGameSystem |
21 { | |
22 get { return system; } | |
23 set | |
24 { | |
25 if (system==null || !system.Equals(value)) | |
0 | 26 { |
82 | 27 GameSystem oldSystem = system; |
0 | 28 system = value; |
29 | |
30 if (system==null) | |
31 { | |
32 LogNotifier.Debug(typeof(WarFoundryCore), "Game system set to null"); | |
33 } | |
34 else | |
35 { | |
36 LogNotifier.DebugFormat(typeof(WarFoundryCore), "Game system set to {0} with ID {1}", system.Name, system.ID); | |
82 | 37 } |
38 | |
39 if (GameSystemChanged!=null) | |
40 { | |
41 GameSystemChanged(oldSystem, system); | |
0 | 42 } |
43 | |
44 //If we've changed the game system then we can't keep the current army | |
82 | 45 CurrentArmy = null; |
46 } | |
47 } | |
0 | 48 } |
49 | |
82 | 50 public static Army CurrentArmy |
51 { | |
52 get { return currentArmy; } | |
53 set | |
54 { | |
55 if (currentArmy==null || !currentArmy.Equals(value)) | |
56 { | |
57 /*if (currentArmy!=null) | |
58 { | |
59 currentArmy.UnitAdded-= UnitAddedMethod; | |
60 currentArmy.UnitRemoved-= UnitRemovedMethod; | |
61 currentArmy.PointsValueChanged-= PointsValueChangedMethod; | |
62 currentArmy.FailedRequirement-=FailedUnitRequirementMethod; | |
63 }*/ | |
64 Army oldArmy = currentArmy; | |
0 | 65 currentArmy = value; |
66 | |
67 if (currentArmy!=null) | |
68 { | |
69 CurrentGameSystem = currentArmy.GameSystem; //Set the game system in case the new army is from a different system | |
82 | 70 } |
71 | |
72 /*if (currentArmy!=null) | |
73 { | |
74 currentArmy.UnitAdded+= UnitAddedMethod; | |
75 currentArmy.UnitRemoved+= UnitRemovedMethod; | |
76 currentArmy.PointsValueChanged+= PointsValueChangedMethod; | |
77 currentArmy.FailedRequirement+=FailedUnitRequirementMethod; | |
78 }*/ | |
79 | |
80 if (ArmyChanged!=null) | |
81 { | |
82 ArmyChanged(oldArmy, currentArmy); | |
83 } | |
84 } | |
85 } | |
0 | 86 } |
87 } | |
88 } |