Commit Graph

11120 Commits (862c5fc8f6bd48d7104b2160bfa56c8c656e8f6b)
 

Author SHA1 Message Date
scrawl c5fa7bf7c2 Minor cleanup 11 years ago
scrawl 4f92044d71 Allow user-created markers on local map (Fixes #1571) 11 years ago
scrawl 17dc01ec44 Require MyGUI version 3.2.1 and remove legacy code (Fixes #1528) 11 years ago
scrawl 1baf0f7bb2 Add version parsing to FindMyGUI.cmake 11 years ago
scrawl c2a91148f3 Implement multiple emitter nodes for NiBSPArrayController
The particles for the flame, frost and storm atronachs work correctly now.
11 years ago
scrawl dd77954512 Don't pass key to input binder if it was consumed by text editor (Fixes #1845) 11 years ago
scrawl dcddd9a07c Use MyGUI clipboard events for MyGUI 3.2.1+ (Fixes #1846)
Note that only <= 3.2.0 and >= 3.2.1 are supported, any SVN version between them might still exhibit duplicate text pasting.
11 years ago
scrawl 3d47f2ceb0 Fix bad indentation 11 years ago
scrawl 10a0e2434e Open inventory when activating an unconscious actor (Fixes #1848) 11 years ago
scrawl fc7ed05da8 Knock out actors when fatigue base is 0 (Fixes #1847) 11 years ago
scrawl 44642ae21b Fix incorrect Speed value in ESM::MagicEffect (thanks Hrnchamd) 11 years ago
scrawl b4fbaf1169 Fix potential infinite recursion in ActionTeleport (Fixes #1840) 11 years ago
scrawl 854491ac15 Don't treat actors as following if another non-combat AiPackage precedes (Fixes #1843) 11 years ago
scrawl 7714192e28 Remove wrong comment 11 years ago
scrawl 9f13315d1c Remove unused numUnload 11 years ago
scrawl c775e05d7a Show encumbrance preview when trading (Fixes #1793) 11 years ago
Marc Zinnschlag f1f38fc786 Merge remote-tracking branch 'miroslavr/master' 11 years ago
MiroslavR 46e9ee408f Do not allow mods to change fixed effect properties in the legacy format, but allow it entirely in the new format. 11 years ago
MiroslavR fc21d898f2 Add hand-to-hand tooltip 11 years ago
MiroslavR 3823e36f05 Merge branch 'master' of github.com:OpenMW/openmw 11 years ago
MiroslavR d16e0c063c Enchanting, spellmaking dialog: check for flags when listing known effects 11 years ago
MiroslavR df262e53ae Display school in the spell tooltip 11 years ago
Arthur Moore b7852b8215 Convert niffile.cpp to use std::map instead of a custom search function.
I haven't profiled this, but it should speed things up a decent bit.
11 years ago
MiroslavR fc789265e2 Spells that always succeed should not increase your skill when you cast them 11 years ago
Arthur Moore 8be6aefd95 Moved functions from niffile.cpp to where they belong.
Also cleaned up some #includes

Removed a few asserts.  Vector already throws an out_of_range error.
11 years ago
Marc Zinnschlag 45c0be8f62 Merge remote-tracking branch 'emperorarthur/niftest' 11 years ago
Marc Zinnschlag 80f05a3b81 Merge remote-tracking branch 'emperorarthur/Documentation_Updates' 11 years ago
Arthur Moore 53ce94d0e4 Disable building nif file tester by default 11 years ago
Arthur Moore cdfa24e15d (Re) Wrote a tool to test NIF files in BSAs and on the filesystem.
Just give it a set of files, one file per argument, and it will make sure openmw can read them.

On linux/mac you can use "xargs --arg-file=nifs.txt ./niftest" to give it a list of files to check.
11 years ago
Marc Zinnschlag 111b55f48e Merge remote-tracking branch 'scrawl/script' 11 years ago
Arthur Moore 5794751dd9 Updated Doxyfile to latest version.
Changes are cosmetic, but allow for more modification of the defaults.
11 years ago
scrawl 174153b2da Revert "Fix member variable case problem"
This reverts commit f0354ea04c.

Fixes #759 (again)

Conflicts:
	components/compiler/lineparser.cpp
11 years ago
Arthur Moore 96c8322665 Changed doxygen build file options
Use 'doxygen docs/Doxyfile' to build the documentation.
11 years ago
Arthur Moore 7cfbde6cbc Updated .mailmap file 11 years ago
Arthur Moore 84d0bf82b2 First pass at creating a .mailmap file for git.
This will make it easier to use git blame to identify individual file authors.

Generated with:  "git log --format='%aN <%aE>' | sort -u"
Edited by hand to match nicknames with Credits.txt
11 years ago
MiroslavR e8a245bea3 Enchanting dialog: follow vanilla behavior more closely 11 years ago
MiroslavR e2f15181f9 Make the "Choose an Attribute" text centered 11 years ago
Marc Zinnschlag 52f6a2ec7b remote local variable access was always using variable with index 1 instead of the index specified by the access request (Fixes #1739) 11 years ago
Marc Zinnschlag 736ab76f68 limit argument error workaround to PositionCell instruction (Fixes #1732) 11 years ago
Marc Zinnschlag d024c1a93f Merge remote-tracking branch 'scrawl/master' 11 years ago
Marc Zinnschlag 79e1786ff9 Merge remote-tracking branch 'rohitnirmal/quick-draw' 11 years ago
scrawl c5c822ecba Use Chop attack when walking diagonally (Fixes #1729) 11 years ago
scrawl e0e4cbbb41 Implement Light magic effect (Fixes #1122) 11 years ago
scrawl 714c927fda Fix being able to change camera during death via mouse wheel 11 years ago
scrawl 3dbe17b6ed Terminate AiPursue when target dies (Fixes #1836) 11 years ago
scrawl 1a8acac40a Share keyframe data in NIF resource (Fixes #908) 11 years ago
scrawl 2b407a9995 Refactor NIF cache
- Remove broken cache locking mechanism

This was supposed to unload NIFFiles after a cell transition completes, but it was never working due to a mistake on the line if (--sLockLevel), should have been if (--sLockLevel == 0). Repairing this would increase load times (NIF files would have to be reloaded more frequently), so just removed it for now.

 - Decouple cache from NIFFile (now a new nifcache component)

 - Add API for future background loading

 - Provide a reliable way (SharedPtr) to hold on to loaded NIFFiles. This will be useful to avoid deep copies of keyframe and text key data, which is currently a performance bottleneck.
11 years ago
Marc Zinnschlag 80d39780ae same fix for a couple of additional instructions 11 years ago
Marc Zinnschlag 7de49a66e2 fix for PCJoinFaction and for getPcRank without explicit reference 11 years ago
Marc Zinnschlag 0d8bfbfa9b getpcrank did not read the explicit reference in some cases (Fixed #1767) 11 years ago