On Saturday,  9 September 2006 at  2:30, Dennis Schridde wrote:
> Hi!
> 
> I added 2 new pages to the wiki and would like to get some comments:
> http://wz.rootzilla.de/wiki/user:codingstyle

Well, the coding style is mostly personal preference, the main thing is
to keep it consistent (as far as possible, since the existing code
isn't). I'd only like to comment on one thing: Tab size. There is a
indentation style where tab size is irrelevant: Use tabs to indent and
spaces to align, like this:

int bla(int blubb) {
        int      i = 26;
        float honk = 84.332;
        if (blubb < i ||
            blubb > honk)
                return 37;
        }
        return 982;
}

That would be my preference.

And I'd move the first six points of "Other" to user:coding, as that's
rather code organization than coding style. Then rename "Other" to
"Indentation" (that's usually used instead of "indention").

> http://wz.rootzilla.de/wiki/user:wishlist

Question: What about the TODO file in the repository? Do we need both?
If not, which one do we keep? In my opinion, the wiki is more suitable
for that as it can be changed more easily.

Not all of the points you listed are major changes ("Make it possible to
close Warzone with ^C, ALT+F4 or closing the window", "Fix memleaks in
lexer files").

"Improve the menus for usability (esp. networking)" is connected to an
overhauled GUI system; "Increase drawed area In-Game" and "Find a better
(easily useable) dataformat for models (?) and textures (DDS?)" depend
on the graphics engine. DDS looks to Microsoft/DirectX specific to me,
which Linux program can edit those files? And what's wrong with PNG /
what's better about TGA?


-- 
Disclaimer: "These opinions are my own, though for a small fee they be
yours too."
                -- Dave Haynie

_______________________________________________
Warzone-dev mailing list
[email protected]
https://mail.gna.org/listinfo/warzone-dev

Reply via email to