OpenMW 0.29.0

Anything related to PR, release planning and any other non-technical idea how to move the project forward should be discussed here.
User avatar
scrawl
Posts: 2152
Joined: 18 Feb 2012, 11:51

Re: OpenMW 0.29.0

Post by scrawl »

Thanks. Applying fix now. Should have checked this part first. But then, this should also cause reloading content files saved with OpenCS to break on Windows. I guess no one ever tried that.
Shouldn't the same line in ESMWriter::startSubRecord also be changed?
Also, can someone explain what was actually going on here? The size is overwritten later anyway in endRecord, so why do these lines cause problems?
Last edited by scrawl on 20 Feb 2014, 12:51, edited 1 time in total.
User avatar
Zini
Posts: 5538
Joined: 06 Aug 2011, 15:16

Re: OpenMW 0.29.0

Post by Zini »

Done. Thanks. This esm reader/writer stuff is starting to give me a headache.

Anyway, all fixed have been applied and the changelog has also been updated. Please start creating the RC builds.

Notes for the release: Load/Save is still missing a few parts. Most of it is less important, but the following should be mentioned:
- Some creature state (also used for NPCs) is missing, including magic and AI
- Moving objects (other than the player) between cells is not handled properly

In the release message it should also be explicitly stated that the saved game format is not final yet. Until 1.0 it can be changed at any time, which may break compatibility with older saves.
User avatar
gus
Posts: 390
Joined: 11 Aug 2011, 15:41

Re: OpenMW 0.29.0

Post by gus »

I think we should wait for confirmation from anyone with windows.

scrawl: I don't really know. It just seemed wrong, so I changed it, and it worked. But I guess the memory allocation is done with this. Later, only the value is changed. Dunno why it worked without changing the subrecord thing.
User avatar
scrawl
Posts: 2152
Joined: 18 Feb 2012, 11:51

Re: OpenMW 0.29.0

Post by scrawl »

I think we should wait for confirmation from anyone with windows.
Agreed. I don't understand how this change should fix anything.
Notes for the release
Previous config files are invalid, unless the ini importer is run again, since blood texture settings are now required.
User avatar
cc9cii
Posts: 523
Joined: 28 Mar 2013, 04:01

Re: OpenMW 0.29.0

Post by cc9cii »

I can give this a try, but at the moment I can't get past avcodec-54.dll crashing playing the initial movie to try saving/loading. I'll have one more go (with the 2 line changes in ESM) and report back.
User avatar
gus
Posts: 390
Joined: 11 Aug 2011, 15:41

Re: OpenMW 0.29.0

Post by gus »

Also, in ESM::Writter line 130

Code: Select all

        write (reinterpret_cast<const char*> (&rec.size), sizeof(int));
should be

Code: Select all

        write (reinterpret_cast<const char*> (&rec.size), sizeof(uint32_t));
I think. I still don't get what's going on
User avatar
cc9cii
Posts: 523
Joined: 28 Mar 2013, 04:01

Re: OpenMW 0.29.0

Post by cc9cii »

Urm... that's line 120 for me? I'll assume line 130 was a typo.

Anyway my debug build died in AiCombat::buildNewPath

Code: Select all

 ESM::Pathgrid::Point lastPt = mPathFinder.getPath().back();
so I'll have to build a release version.
User avatar
Zini
Posts: 5538
Joined: 06 Aug 2011, 15:16

Re: OpenMW 0.29.0

Post by Zini »

Actually, that line shouldn't make a difference, because sizeof(int)==sizeof(uint32_t) on all our target platforms.

But then the other changes shouldn't make a difference either, because the value written is indeed overwritten later and also for the value 0 it doesn't matter if we are dealing with signed or unsigned integers.

Okay, let's hold the RCs a bit longer until we have confirmation from cc9cii.

I think in the long run we are looking at a total rewrite of both ESMReader and ESMWriter. These two classes have to many problems and too much cruft has accumulated.
User avatar
cc9cii
Posts: 523
Joined: 28 Mar 2013, 04:01

Re: OpenMW 0.29.0

Post by cc9cii »

Don't know how to copy/paste from the console? :oops:

Image

Couldn't load immediately after saving, and when I exit and re-start openmw I don't see an option to load.
User avatar
Zini
Posts: 5538
Joined: 06 Aug 2011, 15:16

Re: OpenMW 0.29.0

Post by Zini »

You don't get the option to load because OpenMW can't find a valid saved game file.

Fix doesn't work. Sad :(
Post Reply