-
Notifications
You must be signed in to change notification settings - Fork 26
/
SUGGESTIONS
154 lines (134 loc) · 7.04 KB
/
SUGGESTIONS
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
===============================================================================
SUGGESTIONS - A primitive attempt to keep track of user suggestions
===============================================================================
- 01 --------------------------------------------------------------------------
Suggestor: Ahmed Mohombe <[email protected]>
Date: 08/03/04
Summary: Isometric mode by shifting every other row in y direction.
State: To be implemented (task #78)
Problems: Shift even rows or odd rows? Or how to make that an option?
- 03 --------------------------------------------------------------------------
Suggestor: Ahmed Mohombe <[email protected]>
Date: 08/04/04
Summary: Coordinate translator to use when the user view on the map is not
what Tiled uses, should especially be useful for isometric or
hexagonal maps.
State: To be discussed
Problems: The engine the user is using will still need to understand the
way Tiled uses the coordinates.
- 06 --------------------------------------------------------------------------
Suggestor: Ahmed Mohombe <[email protected]>
Date: 08/04/04
Summary: There are a lot of GUI libraries for Java to create certain common
or complex constructions. Mentioned are l2fprod-common,
glazedlists, gui-commands and wizard-framework from java.dev.net.
State: Not needed at the moment
- 07 --------------------------------------------------------------------------
Suggestor: Nephilim <[email protected]>
Date: 06/16/04
Summary: Text layers and numeric layers for adding engine-specific
information such as scripts, comments, numeric overlays, object
placements, terrain notes, etc.
State: Interesting, but custom tile properties and future object support
should suffice for now.
- 08 --------------------------------------------------------------------------
Suggestor: Nephilim <[email protected]>
Date: 06/16/04
Summary: Keyboard shortcuts for switching between layers, to toggle
display of tile palette and to switch between palette sets.
State: Interesting, needs research.
- 09 --------------------------------------------------------------------------
Suggestor: Nephilim <[email protected]>
Date: 06/16/04
Summary: A little window that shows all the layers in the currently pointed
at cell.
State: Sounds a bit like GUI bloat, might be interesting as an option.
- 10 --------------------------------------------------------------------------
Suggestor: Nephilim <[email protected]>
Date: 06/16/04
Summary: Ability to drag the map around by holding spacebar a la Photoshop
and similar.
State: Needs research.
- 11 --------------------------------------------------------------------------
Suggestor: Andreas Mross <[email protected]>
Date: 09/09/04
Summary: Execute pour in seperate thread, to prevent locking up rest of UI.
State: Needs research.
- 12 --------------------------------------------------------------------------
Suggestor: Andreas Mross <[email protected]>
Date: 09/09/04
Summary: Use AffineTransform for the zooming feature.
State: Needs research, probably a no-go.
- 13 --------------------------------------------------------------------------
Suggestor: Andreas Mross <[email protected]>
Date: 09/08/04
Summary: Hexagonal map view.
State: To be refined.
- 16 --------------------------------------------------------------------------
Suggestor: Andreas Mross <[email protected]>
Date: 09/09/04
Summary: Additional documentation on the map format.
State: To be written.
- 18 --------------------------------------------------------------------------
Suggestor: Rainer Deyke <[email protected]>
Date: 24/09/04
Summary: A random brush that randomly picks one of several tiles to draw.
State: Implemented
(Actually a brush was implemented that draws a single tile in
random locations, not a brush that picks a random tile to draw. The
latter is probably what Rainer Deyke meant here)
- 20 --------------------------------------------------------------------------
Suggestor: Rainer Deyke <[email protected]>
Date: 24/09/04
Summary: The ability to place objects, or failing that, the ability to
attach properties to individual map cells.
State: Object support is planned for 0.7.0
- 21 --------------------------------------------------------------------------
Suggestor: Rainer Deyke <[email protected]>
Date: 24/09/04
Summary: Animated tiles.
State: Flyspray task #62
- 22 --------------------------------------------------------------------------
Suggestor: Rainer Deyke <[email protected]>
Date: 24/09/04
Summary: "Deep" brushes that affect more than one layer.
State: Implemented.
- 24 --------------------------------------------------------------------------
Suggestor: Radomir Dopieralski <[email protected]>
Date: 29/10/04
Summary: Tileset should allow a base directory attribute for relative image
paths.
State: Implemented.
- 25 --------------------------------------------------------------------------
Suggestor: Radomir Dopieralski <[email protected]>
Date: 29/10/04
Summary: Tilesets should allow a designated default tile image.
State: Interesting.
Problem: What would such a default tile image be used for? As there can be
multiple tilesets used by a map I do not think it's very useful to
define a default tile for a tileset. Maybe there could be an option
for a default layer tile? This would be the tile which for the
chosen layer is drawn in any place that does not define a tile.
- 26 --------------------------------------------------------------------------
Suggestor: danter
Date: 14/08/05
Summary: Have an option to toggle tile ids shown in tile palette window.
State: To be implemented.
- 27 --------------------------------------------------------------------------
Suggestor: danter
Date: 24/09/05
Summary: Location-based properties.
State: Needs to be discussed.
Problems: Do we store these properties on the map level, the layer level or
on their own "property"-layers? Things to consider are ease of use
and flexibility. Also, is this functionality provided by objects?
- 28 --------------------------------------------------------------------------
Suggestor: bjorn
Date: 18/02/06
Summary: Removing of stupid features. (like this suggestion)
State: Discussed and partly in progress.
Problems: * Do not support embedding of tilesets or tile images and neither
multiple external individual tile images in a single tileset.
* Rename HexMapView to HexagonalMapView, IsoMapView to
IsometricMapView and OrthoMapView to OrthographicMapView.
* Get rid of reflection used for loading maps.