UFO:Alien Invasion
Development => Newbie Coding => Topic started by: martindcohen on August 13, 2009, 05:38:11 am
-
Hi Guys,
I played the game, loved it and want to give something back.
Im a professional C++ programmer willing to help but im not sure where to start.
Do you have some issues for me to look at ?
Keep in mind that i cannot do it full time. ;D
Cheers !
-
Hi Tachop.
You'd prefer to get certain task (or bug) assigned by someone from the devs - do I understand you correctly?
Do you have local repo copy already?
-
Perfectly, the idea is to help where the team needs it.
Local SVN - Checked
CodeBlocks - Checked
Compiled - Checked (Radiant build is broken in Windows?)
SourceForce account - Checked
I think im ready ... :)
-
Hi and welcome.
We are glad about every new hand we can get. If you are a C++ coder help on our mapeditor is highly welcome. It's C++ - the game itself is C.
As you have noticed already, current UFORadiant isn't compiling on windows. I'm merging currently a lot of stuff from another radiant version named darkradiant. (see here (http://darkradiant.svn.sourceforge.net/)).
Imo the worst thing in the open source world is always the editor for your game. I would like to provide an editor for contributors to create high quality game content. To reach this goal a lot of work on the radiant codebase is needed. If we want to get new mappers and so on we have to improve the tools and make them easier (and even more important - make them more stable).
Especially about radiant, we have a todo list dedicated to it in our wiki. feature request, bugs and improvements. if you have more questions please ask and we will try to answer them. keep in mind that currently everybody who is working on radiant is trying to get into the codebase ;)
We would be very glad to welcome you on the list of coders.
-
Thanks !
Consider it done !
Wheres the migration plan ?
-
Hi Tachop !
First off, a big welcome from my side, too. Sounds like you liked the invitation ;)
The biggest problem with radiant atm is that it runs for some Window$ users (Rudolfo(XP) & Mattn(?)) while it does NOT run for others (BTAxis(XP & 7) & me(Vista)).
We had a discussion about that in our mailinglist http://lists.killfile.pl/pipermail/ufoai/2009-August/001255.html (http://lists.killfile.pl/pipermail/ufoai/2009-August/001255.html), but it seems we have run out of ideas :(
You said it compiles for you. Does it also *run* on your system ?
-
Actually i couldnt compile it, right now im updating the latest changes.
Will ping back in a few.
-
camwindow.cpp|1517|error: 'GL_TEXTURE0' was not declared in this scope
Anybody has this error ?
-
camwindow.cpp|1517|error: 'GL_TEXTURE0' was not declared in this scope
Anybody has this error ?
BTAxis has: IRC Log (http://colabti.org/irclogger/irclogger_log/ufoai?date=2009-08-13#l550)
-geever
-
Yup. I get it too (R25675).
-
Ok ...
Saw that one before but also found this comment ...
/* Under Windows, we do not define OpenGL 1.2 & 1.3 functionality, since
it is treated as extensions (defined in glext.h) */
#if !defined(__WIN32__)
Thats why i was asking ... ;D
-
@Tachop:
Stupid question:
Do you happen to know if there is something like __WIN64__ ??
@geever:
I assume you're on linux, right ?
And you do NOT get that error, right ?
-
@Tachop:
Stupid question:
Do you happen to know if there is something like __WIN64__ ??
There is, but is not related to that other missing define if thats your question.
-
Duke, Radiant also work for me (W7). Before last mattn changes breaking win32 compiling.
-
Hi Kildor,
What commit nbr are you talking about ?
-
there was some merging commits, near "add sound plugin". I can`t currently search through revisions, which one has introduced breaking change.
-
I checked the gl.h file and at line 1454 found a rather interesting comment ...
/* Include external definitions of OpenGL extensions */
/* Removed, see this bug report for reference:
* http://sourceforge.net/tracker/index.php?func=detail&aid=610178&group_id=2435&atid=102435
*
*#include <GL/glext.h>
*/
Included it and all compile issues are gone, got an unreferenced function, though ...
Have to go to sleep will keep going tomorrow.
-
try to add this to your mingw directory.
http://mattn.ninex.info/download/openal.zip
-
where did you include it? in igl.h?
-
@geever:
I assume you're on linux, right ?
And you do NOT get that error, right ?
I'm on Linux, Debian 4, and I can't compile UFORadiant as my libs (gettext, gtk) are older than required. :(
-geever
-
I'm on Linux, Debian 4, and I can't compile UFORadiant as my libs (gettext, gtk) are older than required. :(
that's still the case? i thought rudolfo added sentinels around the code parts that failed on your system.
-
that's still the case? i thought rudolfo added sentinels around the code parts that failed on your system.
Rudolfo said he could do nothing for gettext IIRC. But I can test it in the evening.
-geever
-
where did you include it? in igl.h?
No, i changed it on gl.h but just for testing purposes.
Ill see about it once i get back from work in about 9 hours :-\
But so far seems like that parts is why didnt compile on win32 ...
-
for that glext problem I commited an updated igl.h some days ago.
@geever, mattn: for gettext I did not had any clue, I think mattn changed something for that _C gettext function
regarding gtk: I know that actually I have some gtk_tree_view_set_search_entry functions that do not exist in old gtk (< 2.10) - I asked on irc whether I should add sanity checks for that too, but got no answer yet.
Actually I also can't launch radiant because of that "undefined glGetError" error.
@Tachop: the changes in qgl.cpp|h and igl.h in uforadiant have been a try to get rid of that redefine table for gl functions, see mattns commit http://ufoai.svn.sourceforge.net/ufoai/?view=rev&rev=25621
-
for that glext problem I commited an updated igl.h some days ago.
@geever, mattn: for gettext I did not had any clue, I think mattn changed something for that _C gettext function
regarding gtk: I know that actually I have some gtk_tree_view_set_search_entry functions that do not exist in old gtk (< 2.10) - I asked on irc whether I should add sanity checks for that too, but got no answer yet.
Actually I also can't launch radiant because of that "undefined glGetError" error.
@Tachop: the changes in qgl.cpp|h and igl.h in uforadiant have been a try to get rid of that redefine table for gl functions, see mattns commit http://ufoai.svn.sourceforge.net/ufoai/?view=rev&rev=25621
Hi Rudolfo,
Saw that and seems ok.
Kinda solved the undefined glGetError, im using the ircchannel as a log, the solution is there.
Is compiling ok but fails on initialization, seems that maybe there is more code to be ported from gtkradiant id like to know if thats the case.
-
Tachop your solution using qgl/igl stuff from radiant 1.5 is actually a revert of mattns commit (in my opinion, did not see what you did). So I don't count this as a real solution.
I found out (like stated on ml) that that libopengl32.a defines _glGetError@0 instead of glGetError - this could be the problem. I don't know where mattn got that lib, the one I created here on my own seems to be better.
for geever I will try to include more gtk version checks as he uses some gtk 2.8. We should define a version which we will set as minimum requirement. That would make it easier to include appropriate checks here and there.
see you soon (hopefully I find time on wednesday again)
-
Rudolfo,
Im kinda lost about what i should be doing, my first priority is to get Radiant working for me until you have it stable enough for me to work on.
In the meantime once i have it working i can get a task from TODO and start from scratch.
So far is running, asking for an engine path (didnt quite figure out that one yet) and a compiler exe (may be ufo2map ?)
Id like to meet you guys on the chat in order to get my act together :)
-
engine path should point to the directory above radiant executeable (ufoai base directory).
compiler is the ufo2map tool. correct.
Don't know whether you yet found it, we have some explanations on our wiki for radiant usage: http://ufoai.ninex.info/wiki/index.php/Mapping
-
Was wondering then, did RudolfoWood or any others managed to fix the radiant issue then??
I ma anxious to get this resolved and see whats the resultant accomplishments so far has been.....
Advise pls, anyone? This is a flowover problem detailed here (http://ufoai.ninex.info/forum/index.php?topic=3952.msg29617#new).
-
Tachop fixed it in rev. 25740 (at least for me, if you still have trouble with that revision, please post again).
-
Using R25769 on Vista with C::B I get
C:\UFO\src\tools\radiant\plugins\sound\soundplayer.h:5:19: error: AL/al.h: No such file or directory
C:\UFO\src\tools\radiant\plugins\sound\soundplayer.h:6:20: error: AL/alc.h: No such file or directory
...
Do I have to do anything more than svn up ??
Maybe a new C::B package ?
-
extract http://mattn.ninex.info/download/openal.zip into your mingw directory
-
I might be wrong, but it looks like the OpenAL library either isn't set up properly or isn't being linked to in C::B properly on your machine.
OpenAL was recently added to the project, it wasn't included or used previously, Did you download it?
I've been very busy the last week, I haven't re-compiled the game lately, but I'm slowly getting spare time back again and when I have a chance I might update the wiki with new info on OpenAL and including it to compile on Windows (if no one has updated the wiki already).
Edit: Mattn posted as I was typing, there's your download if you didn't already get it. This is another reason the wiki should be updated - if it hasn't been already, it seems some people might still be out of the loop on this issue...
-
Thx to both of you :)
Mattn, when will the openal.zip be added to the C::B zip ?
-
it's already included in the script - it's just waiting that some windows user opens the mingw shell, run the script and check that everything is where it is supposed to be
it's a nightmare for a linux-only user to prepare a windows-only package that windows users have to test - and rerun this script in case some stuff failed. that's a task a windows user should do.
so we need someone who feel responsible for this... maybe odie? ;)
-
it's already included in the script - it's just waiting that some windows user opens the mingw shell, run the script and check that everything is where it is supposed to be
so what to do? download your codeblocks.zip and than run which script ?
the project-compilation??
-
it's already included in the script - it's just waiting that some windows user opens the mingw shell, run the script and check that everything is where it is supposed to be
it's a nightmare for a linux-only user to prepare a windows-only package that windows users have to test - and rerun this script in case some stuff failed. that's a task a windows user should do.
so we need someone who feel responsible for this... maybe odie? ;)
I just got it working (figured it out from the wiki) and I'll try to upload a package soon.
Thyranim, try looking for instructions in the wiki, from the front page navigate to "compile" then "Windows" and then "CodeBlocks." Then look at the bottom of the page for creating a package.
-
after downloading mattns codeblocks and openal-package, clean rebuild workspace works now without error
||=== ufo, windows_debug ===|
D:\_Development\UFOAISVN\ufoai-trunk\src\client\campaign\cp_fightequip_callbacks.c|135|warning: 'AII_GetTechnologyToDisplay' defined but not used|
D:\_Development\UFOAISVN\ufoai-trunk\src\client\renderer\r_error.h|48|warning: 'R_CheckErrorDebug' defined but not used|
||=== uforadiant_model, windows_debug ===|
..\..\src\tools\radiant\libs\autoptr.h||In destructor 'AutoPtr<T>::~AutoPtr() [with T = ArchiveFile]':|
D:\_Development\UFOAISVN\ufoai-trunk\src\tools\radiant\plugins\model\plugin.cpp|117|instantiated from here|
..\..\src\tools\radiant\libs\autoptr.h|9|warning: possible problem detected in invocation of delete operator:|
..\..\src\tools\radiant\libs\autoptr.h|9|warning: invalid use of incomplete type 'struct ArchiveFile'|
..\..\src\tools\radiant\include\iimage.h|47|warning: forward declaration of 'struct ArchiveFile'|
..\..\src\tools\radiant\libs\autoptr.h|9|note: neither the destructor nor the class-specific operator delete will be called, even if they are declared when the class is defined.|
||=== uforadiant, windows_debug ===|
||warning: command line option "-Wno-non-virtual-dtor" is valid for C++/ObjC++ but not for C|
||warning: command line option "-Wno-non-virtual-dtor" is valid for C++/ObjC++ but not for C|
D:\_Development\UFOAISVN\ufoai-trunk\src\tools\radiant\libs\gtkutil\filechooser.cpp|149|warning: 'shortcutFoldersInBaseDir' defined but not used|
D:\_Development\UFOAISVN\ufoai-trunk\src\tools\radiant\radiant\exec.cpp||In function 'void exec_spawn_process(ExecCmd*, void (*)(void*))':|
D:\_Development\UFOAISVN\ufoai-trunk\src\tools\radiant\radiant\exec.cpp|196|warning: statement has no effect|
D:\_Development\UFOAISVN\ufoai-trunk\src\tools\radiant\radiant\exec.cpp||In function 'void exec_run(Exec*)':|
D:\_Development\UFOAISVN\ufoai-trunk\src\tools\radiant\radiant\exec.cpp|396|warning: statement has no effect|
D:\_Development\UFOAISVN\ufoai-trunk\src\tools\radiant\radiant\pathfinding\Routing.h|12|warning: 'routing::m_routingShader' defined but not used|
D:\_Development\UFOAISVN\ufoai-trunk\src\tools\radiant\radiant\server.cpp|204|warning: 'dllexport' attribute ignored|
||=== Build finished: 0 errors, 12 warnings ===|
but never build installer-package before, so perhaps it's best to wait for odie so he's experienced in this ;)
-
installer package creation is easy - install nsis ( http://nsis.sf.net ) and right click the src/ports/windows/installer.nsi afterwards to select the compile option - that's all
-
Hm, i'll give it a try and leave update ;)
Update:
whoops .... didn't work and i wasn't able to read the words in the error message ...
didn't find pk3-files .... of course, forgot to archive them :D
created and restarted the nsis-script
currently compressing
installpackage created successfully
-
Hm, i'll give it a try and leave update ;)
Update:
whoops .... didn't work and i wasn't able to read the words in the error message ...
didn't find pk3-files .... of course, forgot to archive them :D
created and restarted the nsis-script
currently compressing
installpackage created successfully
Well done Thyranim,
Since you are also a windows compiler, i share a couple of reminder experiences.
1) When u do the codeblocks (i am assuming u r using CB from the thread) compilation, its recommended (if u have the time, which really isnt very demanding) to build a debug mode for 2.3 as of now. This will allow testers to do debug options / console inputs.
2) When u do the CB compilation, try to do a Rebuild Workspace mode. This will attempt to rebuild everything from scratch, creating an effectively, New and Updated codes.
3) When you are done, lookout for the Compatibility Announces (http://ufoai.ninex.info/forum/index.php?topic=3963.0) and the For Compilers - Notifications of Maps to Rebuild (http://ufoai.ninex.info/forum/index.php?topic=3799.0) Threads.
They contain important notices as to when you should do a /base/contrib/scripts/compile_maps.bat /clean mode (which is an exhaustively long task ~3 to 6 hrs), which effectively rebuild all maps.
It also contain impt compatibility announcements whereby you may need to start a new campaign and the such. If you intend to help contribute by uploading the installers (which the community including me will be VERY MUCH appreciative of), you may wish to look into one of the threads i maintain at Links for 2.3 Development Binaries - Full Builts & Incremental Builts Only (http://ufoai.ninex.info/forum/index.php?topic=3462.msg29858#new).
Feel free to upload it with the format and layout already existing. You may wish to include the Compatibility Announces there.
If you are update freak like me, haha, check out UFOAI cia's logs for revisions updates here (http://cia.vc/stats/project/ufoai/.rss?ver=2&medium=plaintext&limit=200). This link will give u the last 200 updates (max unfortunately), but u can restrict it by changing the nos behind at the end of link.
Eg:
http://cia.vc/stats/project/ufoai/.rss?ver=2&medium=plaintext&limit=200
Gives u 200 updates.
http://cia.vc/stats/project/ufoai/.rss?ver=2&medium=plaintext&limit=15
Gives u last 15 updates. :D
4) You may wish to be reminded of doing your pk3 updates by running /base/archives.bat. You may wish to be informed that it will effectively creates pk3 archives, and subsequent running of it updates the archives. For me, i will delete *.pk3 files in /base before running to effectively make brand new pk3 files. :D
5) Last but not least, do the NSIS script compilation for installers. You may wish to play with this to creat diff types of installers. :D
Okie, update till for now.
Ani queries just feel free to ask the good folks here! :D
Welcome to game and compilations :D