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
Search found 41 matches
- Tue Dec 26, 2006 15:56
- Forum: Offtopic Discussion
- Topic: OSX Development
- Replies: 15
- Views: 16051
- Wed Sep 13, 2006 20:53
- Forum: Offtopic Discussion
- Topic: OSX Development
- Replies: 15
- Views: 16051
- Fri Sep 01, 2006 13:38
- Forum: Offtopic Discussion
- Topic: OSX Development
- Replies: 15
- Views: 16051
- Fri Sep 01, 2006 03:37
- Forum: Offtopic Discussion
- Topic: OSX Development
- Replies: 15
- Views: 16051
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...
- Sat Aug 05, 2006 15:42
- Forum: Offtopic Discussion
- Topic: OSX Development
- Replies: 15
- Views: 16051
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...
- Fri Aug 04, 2006 15:10
- Forum: Offtopic Discussion
- Topic: OSX Development
- Replies: 15
- Views: 16051
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 ...
- Tue Nov 29, 2005 06:29
- Forum: Modifications / Integrations / Customisations
- Topic: Using TinyXML and CEGUI together in an application
- Replies: 4
- Views: 4230
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.

-E
- Sat Nov 26, 2005 15:32
- Forum: Modifications / Integrations / Customisations
- Topic: Using TinyXML and CEGUI together in an application
- Replies: 4
- Views: 4230
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...
- Tue Nov 15, 2005 21:30
- Forum: Modifications / Integrations / Customisations
- Topic: Problem linking against CEGUI on Mac OS X
- Replies: 4
- Views: 3572
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...
- Sat Oct 29, 2005 16:24
- Forum: CEGUI Library Development Discussion
- Topic: Lua and other DLLs
- Replies: 9
- Views: 12510
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.
- Tue Oct 11, 2005 03:32
- Forum: Modifications / Integrations / Customisations
- Topic: OSX Framework
- Replies: 11
- Views: 9164
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 ...
- Mon Oct 10, 2005 04:14
- Forum: Modifications / Integrations / Customisations
- Topic: OSX Framework
- Replies: 11
- Views: 9164
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...
- Sat Oct 01, 2005 20:17
- Forum: Offtopic Discussion
- Topic: Improvements
- Replies: 2
- Views: 3758
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...
- Fri Sep 30, 2005 01:59
- Forum: Modifications / Integrations / Customisations
- Topic: Differentiating mouse events between CEGUI and Ogre
- Replies: 3
- Views: 3130
Re: Differentiating mouse events between CEGUI and Ogre
You want to consume the event if CEGUI uses it:
-E
Code: Select all
if(CEGUI::System::getSingleton().injectMouseButtonDown(_mapMouseButton(e->getButtonID())))
{
e->consume();
}
-E
- Tue Sep 27, 2005 03:31
- Forum: Offtopic Discussion
- Topic: Lack of Documentation, Samples and Demo's
- Replies: 8
- Views: 7574
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...