Search found 41 matches

by Exsortis
Tue Dec 26, 2006 15:56
Forum: Offtopic Discussion
Topic: OSX Development
Replies: 15
Views: 14981

I checked in some updates to SVN recently that included support for 3 of the 4 XML parsers, some other misc. project fixes, and has a number of the samples building and running.

I need to post a zip file of the dependency frameworks that it needs, though. That will be coming soon.

-E
by Exsortis
Wed Sep 13, 2006 20:53
Forum: Offtopic Discussion
Topic: OSX Development
Replies: 15
Views: 14981

CrazyEddie wrote:Glad to see progress continues Monty :)

CE


That's MISTER Burns! ;)

-E
by Exsortis
Fri Sep 01, 2006 13:38
Forum: Offtopic Discussion
Topic: OSX Development
Replies: 15
Views: 14981

Excellent, Smithers! *taps fingers together* One less thing to worry about. ;)

-E
by Exsortis
Fri Sep 01, 2006 03:37
Forum: Offtopic Discussion
Topic: OSX Development
Replies: 15
Views: 14981

OSX update

Here's an update on my progress of updating the OS X build. I want to make sure it's visible, since the stuff I'm working on isn't being committed to SVN. 1. I have the SILLY.framework built as a universal binary, which required building universal binary frameworks of zlib, png, and jpeg. 2. I'm try...
by Exsortis
Sat Aug 05, 2006 15:42
Forum: Offtopic Discussion
Topic: OSX Development
Replies: 15
Views: 14981

If you have any problem with SILLY contact me :p So far, it's been pretty straightforward. The issue at hand is that fink doesn't build Universal binaries, and googling has shown me that they don't intend to (with good reason). So, it appears my alternatives are: 1. Leave the SILLY Xcode project as...
by Exsortis
Fri Aug 04, 2006 15:10
Forum: Offtopic Discussion
Topic: OSX Development
Replies: 15
Views: 14981

OSX Development

Hey all, First, I apologize for my recent disappearance and the languishing of the OS X project for CEGUI. I've resumed the Xcode project, and wanted to provide an update to the Mac developers on what is coming: 1. The project is being updated to include the new image codecs and XML parsers. 2. The ...
by Exsortis
Tue Nov 29, 2005 06:29
Forum: Modifications / Integrations / Customisations
Topic: Using TinyXML and CEGUI together in an application
Replies: 4
Views: 3965

Re: Using TinyXML and CEGUI together in an application

Ceacy wrote:
I finally put "my" tinyxml in a namespace, so the problem disappeared ;)
Thanks !


Heh, I did the same thing, and didn't even remember. :oops:

-E
by Exsortis
Sat Nov 26, 2005 15:32
Forum: Modifications / Integrations / Customisations
Topic: Using TinyXML and CEGUI together in an application
Replies: 4
Views: 3965

Re: Using TinyXML and CEGUI together in an application

Ceacy wrote: Everything compiles fine, without any error, but when i run the executable, CEGUI::SchemeManager::getSingleton().loadScheme() causes a segfault (before i added tinyxml, it worked). I finally (after some tests) understood that having tinyxml twice (in the CEGUI lib and in my src dir) wa...
by Exsortis
Tue Nov 15, 2005 21:30
Forum: Modifications / Integrations / Customisations
Topic: Problem linking against CEGUI on Mac OS X
Replies: 4
Views: 3408

Re: Problem linking against CEGUI on Mac OS X

tiennou wrote: Hmm, I changed every #include <malloc.h> to #ifdef __APPLE__ #include <malloc/malloc.h>. This seemed to do the trick, but if there's a link between those malloc's and Ogre Memory functions I might come to a few problems. For the ones regarding "CEGUI...Thing.h", I found out...
by Exsortis
Sat Oct 29, 2005 16:24
Forum: CEGUI Library Development Discussion
Topic: Lua and other DLLs
Replies: 9
Views: 11631

Re: Lua and other DLLs

The Lua scripting module allows you pass in your own Lua state structure, and the linked code for Lua/tolua is pretty small, so linking against your own Lua lib doesn't cost that much in terms of binary size.
by Exsortis
Tue Oct 11, 2005 03:32
Forum: Modifications / Integrations / Customisations
Topic: OSX Framework
Replies: 11
Views: 8605

Re: OSX Framework

@Lijat: Aha. The Mac build in the 0.4.0 tarball is slightly broken (as you've noticed). :oops: I would recommend, if you don't want to be bleeding edge with CVS HEAD, to check out the "v0-4" branch from CVS, as it has updates that are not in the tarball, one of which should fix the linker ...
by Exsortis
Mon Oct 10, 2005 04:14
Forum: Modifications / Integrations / Customisations
Topic: OSX Framework
Replies: 11
Views: 8605

Re: OSX Framework

Lijat, I'll try to address all your issues: 1. I believe the general policy right now is not to distribute precompiled binaries. 2. I've not seen the linker error you're getting, but I believe it has to do with one of the frameworks being built as static, and the other as dynamic. 3. I apologize for...
by Exsortis
Sat Oct 01, 2005 20:17
Forum: Offtopic Discussion
Topic: Improvements
Replies: 2
Views: 3529

Re: Improvements

It's standard practice for 3rd-party app/libraries to installed their stuff in the appropriate directories under /usr/local, i.e., /usr/local/include, /usr/local/lib, etc. If you put the libs into a subdirectory, then you'd have to add the path to linker's search paths. While this would work, it unn...
by Exsortis
Fri Sep 30, 2005 01:59
Forum: Modifications / Integrations / Customisations
Topic: Differentiating mouse events between CEGUI and Ogre
Replies: 3
Views: 2941

Re: Differentiating mouse events between CEGUI and Ogre

You want to consume the event if CEGUI uses it:

Code: Select all

if(CEGUI::System::getSingleton().injectMouseButtonDown(_mapMouseButton(e->getButtonID())))
{
     e->consume();
}


-E
by Exsortis
Tue Sep 27, 2005 03:31
Forum: Offtopic Discussion
Topic: Lack of Documentation, Samples and Demo's
Replies: 8
Views: 7122

Re: Lack of Documentation, Samples and Demo's

Documentation is my least favorite thing to do. ;) That being said, it takes time to write, as do samples and demos. And just to pour a little lemon juice into your paper cut, significant changes are on the horizon.... Why document (extensively) what you know will change? The docs and demos and samp...

Go to advanced search