|
|
|
|
June 25th, 2007, 11:35 PM
|
BANNED USER
|
|
Join Date: Feb 2007
Posts: 5,463
Thanks: 165
Thanked 324 Times in 190 Posts
|
|
Linux Case Problems
As many of you know, Linux users need the case of the graphics files declared in the .dm to match the case of the actual filenames. So #spr1 being "dude.tga" in the .dm and the file actually being called "Dude.tga" would cause a crash for them.
So I'm making this thread for Linux users to point out which mods have these issues and post updated or 'fixed' versions if they want. I will try to observe the Case Problem from now on, when updating and making mods, but I am no longer happy to go back and alter my mods when you guys could do it faster (having error messages actually telling you which filenames have problems) and it's you who has the problem, not me (works fine on my computer).
I don't want to be rude or confrontational - I have already go out of my way to sort the problems out for the few linux users who have given me feedback. I just want you guys to be able to sort this out amongst yourselves :]
So here's the thread.
Feel free to bash windows for being stupid too. Although given that all mods work fine under windows and only some of them work under Linux, it seems like for dom3 modding at least, windows has the upper hand (clearly a HUGE sales feature).
|
June 26th, 2007, 02:39 AM
|
|
General
|
|
Join Date: Feb 2007
Location: R'lyeh
Posts: 3,861
Thanks: 144
Thanked 403 Times in 176 Posts
|
|
Re: Linux Case Problems
Okay, let me show you a little bash magic that I just used to find problems:
Code:
grep "\./LAModNations" LAModNations.dm | sed 's/^[^ ]* "\(.*\)"$/\1/g' | sort -f | uniq > want
find ./LAModNations -type f | sort -f > have
diff want have
This shows me inconsistencies between my LA mod and the actual files. Some of them are only additional or old files that can be safely removed, but some show real problems. I'll give you an update shortly.
|
June 26th, 2007, 03:09 AM
|
|
General
|
|
Join Date: Feb 2007
Location: R'lyeh
Posts: 3,861
Thanks: 144
Thanked 403 Times in 176 Posts
|
|
Sylvania
Sylvania
Missing files:
sylvania/pretender_worldtree2.tga
Unused files:
sylvania/hero_warrioress1.tga
sylvania/hero_warrioress2.tga
|
June 26th, 2007, 03:12 AM
|
|
General
|
|
Join Date: Feb 2007
Location: R'lyeh
Posts: 3,861
Thanks: 144
Thanked 403 Times in 176 Posts
|
|
Kharam Dzu
Kharam Dzu
Unused files:
kharamdzu/hero_cannon1.tga
kharamdzu/hero_cannon2.tga
|
June 26th, 2007, 03:23 AM
|
|
General
|
|
Join Date: Feb 2007
Location: R'lyeh
Posts: 3,861
Thanks: 144
Thanked 403 Times in 176 Posts
|
|
Jomon Broken
Jomon Broken
Case trouble:
42,45c48,57
< ./LAModNations/jomonbroken/buried.tga
< ./LAModNations/jomonbroken/buried2.tga
< ./LAModNations/jomonbroken/burned.tga
< ./LAModNations/jomonbroken/burned2.tga
---
> ./LAModNations/jomonbroken/Buried.tga
> ./LAModNations/jomonbroken/Buried2.tga
> ./LAModNations/jomonbroken/Burned.tga
> ./LAModNations/jomonbroken/Burned2.tga
53c65
< ./LAModNations/jomonbroken/Gaki.tga
---
> ./LAModNations/jomonbroken/gaki.tga
Unused files:
jomonbroken/Copy of Buried.tga
jomonbroken/Copy of Buried2.tga
jomonbroken/Copy of Burned.tga
jomonbroken/Copy of Burned2.tga
jomonbroken/Copy of drowned.tga
jomonbroken/Copy of drowned2.tga
jomonbroken/Nekoni2 alt.tga
|
June 26th, 2007, 03:36 AM
|
|
General
|
|
Join Date: Feb 2007
Location: R'lyeh
Posts: 3,861
Thanks: 144
Thanked 403 Times in 176 Posts
|
|
Hoburg Kingdom
Hoburg Kingdom
Unused files:
hoburgkingdom/hoburgcommando.tga
hoburgkingdom/hoburgcommando2.tga
hoburgkingdom/hoburgLElinesoldier.tga
hoburgkingdom/hoburgLElinesoldier2.tga
hoburgkingdom/hoburgleofficer4.tga
hoburgkingdom/hoburgleofficer4b.tga
|
June 26th, 2007, 11:29 AM
|
|
Shrapnel Fanatic
|
|
Join Date: Oct 2003
Location: Vacaville, CA, USA
Posts: 13,736
Thanks: 341
Thanked 479 Times in 326 Posts
|
|
Re: Linux Case Problems
Quote:
lch said:
Okay, let me show you a little bash magic that I just used to find problems:
Code:
grep "\./LAModNations" LAModNations.dm | sed 's/^[^ ]* "\(.*\)"$/\1/g' | sort -f | uniq > want
find ./LAModNations -type f | sort -f > have
diff want have
This shows me inconsistencies between my LA mod and the actual files. Some of them are only additional or old files that can be safely removed, but some show real problems. I'll give you an update shortly.
|
Amazing stuff LCH.
I guess my geeky level is 5. I can actually read and understand all of what you did. But I couldnt have possible whipped it out off the top of my head.
__________________
-- DISCLAIMER:
This game is NOT suitable for students, interns, apprentices, or anyone else who is expected to pass tests on a regular basis. Do not think about strategies while operating heavy machinery. Before beginning this game make arrangements for someone to check on you daily. If you find that your game has continued for more than 36 hours straight then you should consult a physician immediately (Do NOT show him the game!)
|
June 26th, 2007, 12:19 PM
|
|
General
|
|
Join Date: Feb 2007
Location: R'lyeh
Posts: 3,861
Thanks: 144
Thanked 403 Times in 176 Posts
|
|
Re: Linux Case Problems
Ah, that's nothing against the awk stuff that somebody else here posts from time to time (DrP it is, I think?). I use gawk sometimes, too, and love it.
|
Thread Tools |
|
Display Modes |
Hybrid Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is On
|
|
|
|
|