summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakob L. Kreuze <jakob@memeware.net>2018-05-29 14:53:51 -0400
committerJakob L. Kreuze <jakob@memeware.net>2018-05-29 14:53:51 -0400
commit26841886fc9177bcd5e6ed75f3ef8b83bc986977 (patch)
tree12681d5689cfc2c9c7cea2414ba7114cb5faccb9 /src
parent64ac4f969e57a97a917db9f7a95b0708554c86d3 (diff)
Update README
Diffstat (limited to 'src')
-rw-r--r--src/fmt.rs16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/fmt.rs b/src/fmt.rs
index 2129b55..e3a077f 100644
--- a/src/fmt.rs
+++ b/src/fmt.rs
@@ -142,8 +142,17 @@ impl GroupManager {
Ok(())
}
- // TODO: Conventional paths for OSX and Windows from EDuke32's
- // G_AddSearchPaths.
+ // TODO: Implement the following additional search paths:
+ // - The "standard" paths for OSX (See G_AddSearchPaths)
+ // - The "standard" paths for Windows (See G_AddSearchPaths)
+ // - Those specified on the command-line.
+ // - See the CommandPaths and CommandGrps globals in common.cpp
+ // - The "app dir" on OSX.
+ // - PROPERLY add the CWD.
+ // - $HOME/apps/rebuild/ (?)
+ // - $HOME/.config/rebuild/
+ // - Those specified via DUKE3DGRP environment variable.
+ // - See JBF 20031220
fn init_search_paths(&mut self) {
// Initial base paths that don't need a $HOME expansion.
let directories = vec![
@@ -176,7 +185,6 @@ impl GroupManager {
}
}
-
// What's the .MAP / .ART file format?
//
// Go to my Build Source Code Page and download BUILDSRC.ZIP. I have a text file
@@ -187,7 +195,6 @@ impl GroupManager {
// }
-
// impl Art {
// pub fn new(data: &[u8]) -> Result<Art, Box<Error>> {
// let len = data.len();
@@ -211,7 +218,6 @@ impl GroupManager {
// }
// }
-
#[cfg(test)]
mod tests {
use super::*;