Search found 142 matches

by graffy
17 Nov 2013, 19:50
Forum: Support
Topic: OpenMW does not run out of the box with saucy
Replies: 20
Views: 10360

Re: OpenMW does not run out of the box with saucy

Ok, I just upgraded to mint 16 (saucy) and followed this thread, trying to get CMake to configure the project. So far, no luck. I've installed the reverse dependencies (I presume that's what needs to be done in order to make this work). I ran CMake with -DOGRE_STATIC=TRUE and got these errors: CMake...
by graffy
05 Nov 2013, 14:06
Forum: Editor Development
Topic: Ogre Plugin
Replies: 4
Views: 4279

Re: Ogre Plugin

nm.. I pulled form the wrong branch. I see it in master. I was pulling from openmw-27.
by graffy
05 Nov 2013, 00:49
Forum: Editor Development
Topic: Ogre Plugin
Replies: 4
Views: 4279

Re: Ogre Plugin

ogreinit is handled in the components CMakeFile. And it builds out of the box for me. Right, and this is what I added: add_component_dir (ogreinit ogreinit ogreplugin ) But rerunning cmake under QtCreator doesn't make it appear... Hmmm... edit: Seems to be an issue with Qt Creator on my end...
by graffy
04 Nov 2013, 14:14
Forum: Editor Development
Topic: Ogre Plugin
Replies: 4
Views: 4279

Ogre Plugin

Sooo... The latest addition to the editor - sort of doesn't work for me. :) Compiling the project generated linker errors (undefined references to ogereinit). A little digging and I realized the ogreinit component wasn't included in the components::CMakeLists.txt. So, I added it, deleted the cache, ...
by graffy
12 Oct 2013, 14:32
Forum: Editor Development
Topic: ESX selector and stuff
Replies: 195
Views: 75846

Re: ESX selector and stuff

Ok. I will try to figure that out here soon. Otherwise, I have done everything I think needs to be addressed with the lanucher / filedialog code (sans some minor refctoring w.r.t class names / namespaces).
by graffy
11 Oct 2013, 23:13
Forum: Editor Development
Topic: ESX selector and stuff
Replies: 195
Views: 75846

Re: ESX selector and stuff

Ok, so if I have an addon which has two independent dependencies (is that an oxymoron?), the one that has a later date should be loaded afterward?

To restate that, if I have two dependencies which are unrelated to one another, the one with the later date should be loaded second...
by graffy
07 Oct 2013, 12:50
Forum: Editor Development
Topic: Drag & Drop
Replies: 55
Views: 36938

Re: Drag & Drop

Zini was correcting a more abstract issue - he's differentiating between the data and the view of it. That's the distinction of Model-View architecture. What we're concerned with is using drag/drop to relocate/reference data within the model (atomically, the "UniversalId"). The necessary c...
by graffy
07 Oct 2013, 04:12
Forum: Editor Development
Topic: ESX selector and stuff
Replies: 195
Views: 75846

Re: ESX selector and stuff

Latest push to my esxSelector branch has the launcher and filedialog both functional...
by graffy
07 Oct 2013, 03:11
Forum: Editor Development
Topic: ESX selector and stuff
Replies: 195
Views: 75846

Re: ESX selector and stuff

Ok, so I've got the sorting issue almost worked out. Right now, the model automatically sorts based on dependency (ensures no dependency appears in the model later than a file which depends upon it). The date sort, however, leaves me a bit confused. I presume it is intended to resolve a particular e...
by graffy
30 Sep 2013, 05:23
Forum: Editor Development
Topic: Drag & Drop
Replies: 55
Views: 36938

Re: Drag & Drop

Just thought I might weigh in on this one... This issue consists of 3 parts: 1. UniveralId / MME Pretty much every piece of data in a loaded ESM/ESP file can be addressed by a CSMWorld::UniversalId. These pieces of data are what we are going to drag around, so we need a way to convert between QMineD...