ifmapper 0.9 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. data/HISTORY.txt +132 -5
  2. data/IFMapper.gemspec +2 -2
  3. data/TODO.txt +0 -5
  4. data/lib/IFMapper/AStar.rb +15 -8
  5. data/lib/IFMapper/Connection.rb +137 -25
  6. data/lib/IFMapper/FXConnection.rb +54 -40
  7. data/lib/IFMapper/FXConnectionDialogBox.rb +12 -4
  8. data/lib/IFMapper/FXMap.rb +161 -60
  9. data/lib/IFMapper/FXMapperWindow.rb +205 -70
  10. data/lib/IFMapper/FXRoom.rb +7 -2
  11. data/lib/IFMapper/FXRoomDialogBox.rb +2 -1
  12. data/lib/IFMapper/FXRoomList.rb +95 -0
  13. data/lib/IFMapper/PDFMapExporter.rb +10 -1
  14. data/lib/IFMapper/Room.rb +22 -0
  15. data/lib/IFMapper/TranscriptDialogBox.rb +117 -0
  16. data/lib/IFMapper/TranscriptReader.rb +320 -96
  17. data/maps/AllRoads.map +0 -0
  18. data/maps/Bureaucracy.map +0 -0
  19. data/maps/CityOfSecrets.map +0 -0
  20. data/maps/DDIV.map +0 -0
  21. data/maps/Heroine.map +0 -0
  22. data/maps/SavoirFare.map +0 -0
  23. data/maps/Tangle.map +0 -0
  24. data/maps/anchor.map +0 -0
  25. data/maps/ballerina.map +0 -0
  26. data/maps/bluechairs.map +0 -0
  27. data/maps/break_in.map +0 -0
  28. data/maps/christminster.map +0 -0
  29. data/maps/deadline.map +0 -0
  30. data/maps/delusions.map +0 -0
  31. data/maps/dreamhold.map +0 -0
  32. data/maps/eas.map +0 -0
  33. data/maps/eas2.map +0 -0
  34. data/maps/eas3.map +0 -0
  35. data/maps/inhumane.map +0 -0
  36. data/maps/lurkinghorror.map +0 -0
  37. data/maps/metamorphoses.map +0 -0
  38. data/maps/moonmist.map +0 -0
  39. data/maps/muldoon_legacy.map +0 -0
  40. data/maps/pawn.map +0 -0
  41. data/maps/pytho.map +0 -0
  42. data/maps/risorgimento.map +0 -0
  43. data/maps/sherbet.map +0 -0
  44. data/maps/slouch.map +0 -0
  45. data/maps/spring.map +0 -0
  46. data/maps/trinity.map +0 -0
  47. data/maps/worlds.map +0 -0
  48. data/maps/zdungeon.map +0 -0
  49. metadata +42 -8
data/maps/AllRoads.map ADDED
Binary file
Binary file
Binary file
data/maps/DDIV.map ADDED
Binary file
data/maps/Heroine.map ADDED
Binary file
Binary file
data/maps/Tangle.map ADDED
Binary file
data/maps/anchor.map ADDED
Binary file
Binary file
Binary file
data/maps/break_in.map ADDED
Binary file
Binary file
data/maps/deadline.map ADDED
Binary file
Binary file
Binary file
data/maps/eas.map ADDED
Binary file
data/maps/eas2.map ADDED
Binary file
data/maps/eas3.map ADDED
Binary file
data/maps/inhumane.map ADDED
Binary file
Binary file
Binary file
data/maps/moonmist.map ADDED
Binary file
Binary file
data/maps/pawn.map ADDED
Binary file
data/maps/pytho.map ADDED
Binary file
Binary file
data/maps/sherbet.map ADDED
Binary file
data/maps/slouch.map ADDED
Binary file
data/maps/spring.map ADDED
Binary file
data/maps/trinity.map ADDED
Binary file
data/maps/worlds.map ADDED
Binary file
data/maps/zdungeon.map ADDED
Binary file
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.10
3
3
  specification_version: 1
4
4
  name: ifmapper
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.9"
7
- date: 2005-08-30
6
+ version: 0.9.5
7
+ date: 2005-09-09
8
8
  summary: Interactive Fiction Mapping Tool.
9
9
  require_paths:
10
10
  - lib
@@ -28,37 +28,39 @@ authors:
28
28
  - Gonzalo Garramuno
29
29
  files:
30
30
  - IFMapper.rbw
31
- - lib/IFMapper/FXMap.rb
32
31
  - lib/IFMapper/Map.rb
33
32
  - lib/IFMapper/FXRoom.rb
34
33
  - lib/IFMapper/FXSectionDialogBox.rb
35
- - lib/IFMapper/FXMapperWindow.rb
36
34
  - lib/IFMapper/Room.rb
37
35
  - lib/IFMapper/Section.rb
38
36
  - lib/IFMapper/FXMapColorBox.rb
39
37
  - lib/IFMapper/IFMReader.rb
40
38
  - lib/IFMapper/IFMWriter.rb
41
39
  - lib/IFMapper/FXWarningBox.rb
42
- - lib/IFMapper/PDFMapExporter.rb
40
+ - lib/IFMapper/FXMap.rb
43
41
  - lib/IFMapper/FXMapperSettings.rb
44
42
  - lib/IFMapper/FXConnection.rb
45
- - lib/IFMapper/AStar.rb
43
+ - lib/IFMapper/FXMapperWindow.rb
46
44
  - lib/IFMapper/Connection.rb
47
45
  - lib/IFMapper/MapPrinting.rb
48
46
  - lib/IFMapper/FXDCPostscript.rb
49
47
  - lib/IFMapper/FXDCPrint.rb
48
+ - lib/IFMapper/PDFMapExporter.rb
50
49
  - lib/IFMapper/TranscriptReader.rb
51
50
  - lib/IFMapper/FXMapDialogBox.rb
52
51
  - lib/IFMapper/FXSpline.rb
53
52
  - lib/IFMapper/InformReader.rb
54
- - lib/IFMapper/FXConnectionDialogBox.rb
53
+ - lib/IFMapper/FXRoomDialogBox.rb
55
54
  - lib/IFMapper/InformWriter.rb
56
55
  - lib/IFMapper/FXSection.rb
57
56
  - lib/IFMapper/TADSReader.rb
58
57
  - lib/IFMapper/InformReaderOld.rb
59
58
  - lib/IFMapper/FXMapFileDialog.rb
60
59
  - lib/IFMapper/TADSWriter.rb
61
- - lib/IFMapper/FXRoomDialogBox.rb
60
+ - lib/IFMapper/FXConnectionDialogBox.rb
61
+ - lib/IFMapper/AStar.rb
62
+ - lib/IFMapper/TranscriptDialogBox.rb
63
+ - lib/IFMapper/FXRoomList.rb
62
64
  - lib/IFMapper/FXAboutDialogBox.rb
63
65
  - lib/IFMapper/FXSearchDialogBox.rb
64
66
  - maps/Zork_Zero.ifm
@@ -106,6 +108,38 @@ files:
106
108
  - maps/Zork1.ifm
107
109
  - maps/Zork2.ifm
108
110
  - maps/Zork3.ifm
111
+ - maps/deadline.map
112
+ - maps/lurkinghorror.map
113
+ - maps/DDIV.map
114
+ - maps/muldoon_legacy.map
115
+ - maps/bluechairs.map
116
+ - maps/inhumane.map
117
+ - maps/ballerina.map
118
+ - maps/sherbet.map
119
+ - maps/delusions.map
120
+ - maps/zdungeon.map
121
+ - maps/Bureaucracy.map
122
+ - maps/Tangle.map
123
+ - maps/spring.map
124
+ - maps/trinity.map
125
+ - maps/slouch.map
126
+ - maps/pawn.map
127
+ - maps/anchor.map
128
+ - maps/risorgimento.map
129
+ - maps/christminster.map
130
+ - maps/AllRoads.map
131
+ - maps/CityOfSecrets.map
132
+ - maps/pytho.map
133
+ - maps/eas.map
134
+ - maps/eas2.map
135
+ - maps/eas3.map
136
+ - maps/worlds.map
137
+ - maps/SavoirFare.map
138
+ - maps/Heroine.map
139
+ - maps/metamorphoses.map
140
+ - maps/break_in.map
141
+ - maps/moonmist.map
142
+ - maps/dreamhold.map
109
143
  - icons/filenew.png
110
144
  - icons/fileopen.png
111
145
  - icons/filesave.png