Andrei Kortunov
e06f0b797a
Replace all NULLs to nullptr
6 years ago
Andrei Kortunov
87394f2ebb
Revert "Take in account transformations of NiTriShape and NiSkinData in skinning (bug #4437 )"
...
This reverts commit 09427d3f5e
since the
fix is not entirely correct.
6 years ago
Marc Zinnschlag
38758a9555
Merged pull request #1944
6 years ago
Capostrophic
f20f49daa6
Content selector: allow to copy paths to clipboard (feature #2847 )
6 years ago
Andrei Kortunov
43c7438e8e
Move WeakCache to components/misc
6 years ago
Kyle Cooley
7eb1b14b21
Periodically prune empty elements in weak cache
6 years ago
Kyle Cooley
031502b2ab
Reorganize ActorAdapter data, use weak cache for sharing
6 years ago
Kyle Cooley
6bece13a32
Use new Log class for error message
6 years ago
Kyle Cooley
e2ac392a40
Move common stuff to scene util, fix errors with 1st person meshes
6 years ago
Kyle Cooley
8444ee9981
Start rendering npc's
6 years ago
Marc Zinnschlag
43880ca47b
Merged pull request #1919
6 years ago
Andrei Kortunov
0176ee389e
Handle length of UTF-8 strings properly in plugin metadata (bug #4653 )
6 years ago
Andrei Kortunov
bce8de5fe9
Respect selected encoding in the content selector (bug #4467 )
6 years ago
Capostrophic
92259c6cca
Discard count arguments for AddSoulGem and RemoveSpell (bug #3762 )
6 years ago
Marc Zinnschlag
7be9f2ca45
Merged pull request #1891
6 years ago
Andrei Kortunov
01b3f92f7e
Make coc and fixme console commands close to vanilla (bug #4292 , bug #4217 )
6 years ago
Andrei Kortunov
276b7830a9
Mass potion creation (feature #4642 )
6 years ago
Andrei Kortunov
70ed8fd1a9
Use constants instead of widely used magic numbers (task #4645 )
6 years ago
Marc Zinnschlag
06b2a23e74
Merged pull request #1768
6 years ago
Marc Zinnschlag
d76367918a
Merged pull request #1907
6 years ago
Marc Zinnschlag
107165d36d
Merged pull request #1923
6 years ago
Andrei Kortunov
2961f0d810
Allow to use the %Name for creatures (bug #4644 )
6 years ago
Capostrophic
95aa05e41b
Tweaks to script parser messages and pathgrid warnings
6 years ago
Andrei Kortunov
09427d3f5e
Take in account transformations of NiTriShape and NiSkinData in skinning (bug #4437 )
6 years ago
Capostrophic
363516049d
Actually fix General number formatting
6 years ago
Andrei Kortunov
7a986f38da
Support for user-defined TrueType fonts
6 years ago
Andrei Kortunov
c9c0230d2a
Scale journal fonts separately from common ones
6 years ago
Andrei Kortunov
adbaeb7cca
Improve GUI scaling (bug #3288 )
6 years ago
Marc Zinnschlag
6100e34051
Merged pull request #1912
6 years ago
Andrei Kortunov
f0919f51e9
Fix integer result formatting of scripting functions
6 years ago
Andrei Kortunov
c2c24a76a4
Handle MyGUI exceptions inside destructors
6 years ago
Andrei Kortunov
aca6625af4
Avoid possible memory leak by using the unique_ptr
6 years ago
Andrei Kortunov
a262e4b342
Print warning, if can not close or remove temporary file
6 years ago
Andrei Kortunov
d5bcc49079
Initialize missing struct fields
6 years ago
Andrei Kortunov
e5a81b1f99
Fix some issues, found by Coverity Scan
6 years ago
Andrei Kortunov
5693ceca74
Remove redundant declaration
6 years ago
Capostrophic
65ff346b61
Make NPC record reputation, disposition and faction rank have unsigned char type
6 years ago
Andrei Kortunov
7e2bda459b
Check if there are textures in FlipController to avoid division by zero (bug #4614 )
6 years ago
Marc Zinnschlag
78a84042ad
Merged pull request #1901
6 years ago
Capostrophic
7ef6fa9f61
Remove deprecated GMST get* functions
6 years ago
Andrei Kortunov
b0ac0b0b22
Do not initialize map every call
6 years ago
Marc Zinnschlag
24ce8cce72
Merged pull request #1898
6 years ago
Andrei Kortunov
0ddd0e4edc
Fix light flicker amplitude calculation
6 years ago
Andrei Kortunov
c677f7ca27
Rework pulsing light sources (bug #4615 )
6 years ago
Marc Zinnschlag
232ea4f793
Merged pull request #1887
6 years ago
Sophie Kirschner
c412f99963
Remove commented lines in UnrefWorkItem::doWork
6 years ago
Marc Zinnschlag
327f36b081
Merged pull request #1876
6 years ago
Andrei Kortunov
ff241fb787
Optimize skinning (task #4605 )
6 years ago
Sophie Kirschner
4dd9386c4f
Fix error: member access into incomplete type 'SceneUtil::UnrefWorkItem'
...
Fixes compile error encountered on OSX 10.9 with g++
sophie:build pineapple$ g++ --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.56) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix
The compilation error:
[ 24%] Building CXX object apps/openmw/CMakeFiles/openmw.dir/mwrender/renderingmanager.cpp.o
In file included from /Users/pineapple/git/openmw/apps/openmw/mwrender/renderingmanager.cpp:1:
In file included from /Users/pineapple/git/openmw/apps/openmw/mwrender/renderingmanager.hpp:4:
/Users/pineapple/git/openmw/openmw-deps/include/osg/ref_ptr:35:36: error: member access into incomplete type 'SceneUtil::UnrefWorkItem'
~ref_ptr() { if (_ptr) _ptr->unref(); _ptr = 0; }
^
/Users/pineapple/git/openmw/./components/sceneutil/unrefqueue.hpp:14:11: note: in instantiation of member function
'osg::ref_ptr<SceneUtil::UnrefWorkItem>::~ref_ptr' requested here
class UnrefQueue : public osg::Referenced
^
/Users/pineapple/git/openmw/./components/sceneutil/unrefqueue.hpp:10:11: note: forward declaration of 'SceneUtil::UnrefWorkItem'
class UnrefWorkItem;
6 years ago
Andrei Kortunov
a560a9e00d
Allow messageboxes arguments to have newline characters (bug #3836 )
6 years ago