aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-27 05:33:43 +1000
committerDavid Walter Seikel2014-05-27 05:33:43 +1000
commit0e87ee7a5e36799b0693cca3283e9464340b14b9 (patch)
tree53659ca7678587901ce159788b586c51e4bc92a1 /docs
parentPart one of changing the test sim to match the new specs. (diff)
downloadSledjHamr-0e87ee7a5e36799b0693cca3283e9464340b14b9.zip
SledjHamr-0e87ee7a5e36799b0693cca3283e9464340b14b9.tar.gz
SledjHamr-0e87ee7a5e36799b0693cca3283e9464340b14b9.tar.bz2
SledjHamr-0e87ee7a5e36799b0693cca3283e9464340b14b9.tar.xz
Last part of switching the sim over to the new specs.
Diffstat (limited to 'docs')
-rw-r--r--docs/love.txt15
1 files changed, 12 insertions, 3 deletions
diff --git a/docs/love.txt b/docs/love.txt
index f460a71..e21b18b 100644
--- a/docs/love.txt
+++ b/docs/love.txt
@@ -174,21 +174,30 @@ Reference counting.
174------------------- 174-------------------
175 175
176Dunno yet, just realised the need for this, will come up with something 176Dunno yet, just realised the need for this, will come up with something
177soon. 177soon. Will solve this problem when we implement links, wont need it
178until then anyway.
179
180Obviously the count has to be kept with the real asset file, there's a
181few ways to go about that. I've been thinking that the .sha1 file might
182be a good place to keep other meta data, like perhaps owner and group
183info. So one way is to include the reference count there to. Another
184option is a separate .ref file with the count inside. A third option,
185just tack the count onto the end of a file name. This is likely a bit
186quicker than updating a file.
178 187
179On disk structure. 188On disk structure.
180------------------ 189------------------
181 190
182"some sim name" -> some%20sim%20name/index.omg 191"some sim name" -> some%20sim%20name/index.omg
183 list of stuffs rezzed in the sim 192 list of stuffs rezzed in the sim
184 stuffs position, orientation, and size 193 stuffs position, size, and orientation
185 relative file / URL name pointing to the stuffs 194 relative file / URL name pointing to the stuffs
186 no need for the in world name, those interested in that will likely grab the stuffs.omg file anyway 195 no need for the in world name, those interested in that will likely grab the stuffs.omg file anyway
187 196
188 "a stuffs" -> a%20stuffs.omg 197 "a stuffs" -> a%20stuffs.omg
189 in world name, description 198 in world name, description
190 list of stuffs similar to the sim index.omg, only this is for the various meshes that make up this stuffs. 199 list of stuffs similar to the sim index.omg, only this is for the various meshes that make up this stuffs.
191 stuffs position, orientation, and size, relative to this stuffs 200 stuffs position, size, and orientation, relative to this stuffs
192 relative file / URL name pointing to the mesh and textures 201 relative file / URL name pointing to the mesh and textures
193 extra info for each material 202 extra info for each material
194 203