Jérôme Leclercq
2fcea6b79f
Core/StackArray: Moved StackArray class to its own header
2018-07-02 17:53:49 +02:00
Jérôme Leclercq
8cdc36c948
Graphics/Material: Add parameter for vertex color
2018-06-15 14:15:23 +02:00
Jérôme Leclercq
41e2d3e448
Graphics/Material: Add EnableVertexColor temporary
2018-06-15 14:13:18 +02:00
Lynix
a4aad3caac
Merge branch 'master' into vulkan
2018-06-12 19:08:02 +02:00
Lynix
d7a2e9aad1
Merge branch 'ubo' into vulkan
2018-06-12 19:07:58 +02:00
Jérôme Leclercq
b2185f2138
Physics2D/RigidBody2D: Add ClosestPointQuery method
2018-06-12 15:11:16 +02:00
Jérôme Leclercq
56b23a2f27
Network/SocketPoller: Wait() now returns the number of active sockets, and optionally the last error
...
It will also ignore the EINTR error on Linux
2018-06-12 14:31:49 +02:00
Jérôme Leclercq
15f84dc712
Noexcept all the things!
2018-06-12 11:37:44 +02:00
Lynix
843e5545b6
Graphics/BasicRenderQueue: Fix billboards not registering their layer
2018-06-06 21:40:13 +02:00
Lynix
e9f0bdeb25
Graphics/ForwardRenderTechnique: Optimize sprite rendering
2018-06-06 21:38:40 +02:00
Lynix
e4eae425b2
Add support for Uniform Buffer to Utility/Renderer
2018-06-06 20:18:42 +02:00
Lynix
bc2f6f67cc
Graphics/InstancedRenderable: Add Clone method
2018-06-06 19:36:46 +02:00
Jérôme Leclercq
550176e198
Core/SerializationContext: Replaced currentBitPos and currentByte by [read|write][BitPos][Byte] to handle properly bit reading/writing
2018-05-31 16:10:58 +02:00
Jérôme Leclercq
33fb70b65b
Network: Fix SocketPoller error handling
2018-05-31 16:08:46 +02:00
Lynix
db0e3267da
Graphics/AbstractViewer: Add ProjectDepth method
2018-05-29 23:55:51 +02:00
Lynix
e46aa6772e
Graphics/AbstractViewer: Fix Unproject code
2018-05-29 21:05:03 +02:00
Lynix
af34567ae7
Graphics/AbstractViewer: Add Project/Unproject methods
2018-05-27 21:45:06 +02:00
Lynix
b782fd8431
Graphics/Model: add ModelLibrary, ModelManager, ModelSaver
2018-05-27 14:15:29 +02:00
Lynix
3e82413604
Oops
2018-05-21 19:41:11 +02:00
Lynix
f2c16f916a
Lua/LuaState: Add error handling methods
2018-05-21 19:31:19 +02:00
Lynix
8b6311de63
Lua/LuaState: Add Load methods
2018-05-13 14:42:27 +02:00
Jérôme Leclercq
70e0787b93
Utility/OBJLoader: Add index buffer optimization back
...
Fixes incorrect removal from d94baf133b
2018-05-03 14:41:32 +02:00
Jérôme Leclercq
41857a69ca
Utility/OBJLoader: Remove debug line...
2018-05-03 14:38:32 +02:00
Jérôme Leclercq
d53c245c78
Graphics/Model: Fix model not invalidating their bounding volume when their mesh AABB got updated
2018-05-03 13:32:53 +02:00
Jérôme Leclercq
d94baf133b
Utility/Mesh: Refactor Mesh & Submeshes
2018-05-03 13:32:17 +02:00
Jérôme Leclercq
95f137816a
Physics2D/PhysWorld2D: Add invStepCount argument to pre/post steps callbacks
2018-04-30 14:55:28 +02:00
HardCPP
232a371fa5
Add normalLength parameter to the DebugDrawer::DrawNormals ( #163 )
2018-04-30 14:49:44 +02:00
Lynix
43bb487801
Merge branch 'master' into vulkan
2018-04-26 22:48:49 +02:00
Lynix
8695e11436
Fix whitespace
2018-04-26 22:45:24 +02:00
Lynix
7244f1681c
Utility: Fix MD5/MTL/OBJ file parsing
2018-04-21 00:29:53 +02:00
Lynix
52f80a68cb
Renderer/OpenGL: Enable GL_TEXTURE_CUBE_MAP_SEAMLESS
2018-04-21 00:28:57 +02:00
Lynix
7f9eb3771f
Core/Stream: Fix infinite loop
2018-04-18 20:20:23 +02:00
Lynix
cb8f0417a7
Core/Stream: Fix ReadLine behavior towards empty lines
2018-04-18 20:14:56 +02:00
Lynix
d68346ca17
Utility/SimpleTextDrawer: Fix line bounds
2018-04-15 02:42:12 +02:00
Lynix
9f95a6122b
Graphics/MaterialPipeline: Disable depth sorting for Translucent2D pipeline
2018-04-15 02:35:51 +02:00
Lynix
347f8cc986
Utility/Font: Fix handling of whitespace glyphs
2018-04-15 02:34:21 +02:00
Lynix
bf0b8e9c76
Graphics: Fix clear being parasited by scissor operations
2018-04-15 02:31:51 +02:00
Lynix
19f17fa059
Graphics: Add 2D & cubemap white textures
2018-04-13 00:00:36 +02:00
Jérôme Leclercq
2da086b7df
New Render queues ( #161 )
...
* Add new render queues proof of concept + scissoring support (WIP)
* Graphics: Adapt basic sprites rendering to new render queue system
* Graphics: Fix layers when rendering sprites
* Graphics/RenderQueue: Fix sprite default overlay
* Graphics: Enable scissor test by default
* SDK/Widgets: Enable scissoring on widgets
* Graphics: Handle almost everything with the new renderqueues system
Todo:
- Billboard rendering
- Proper model rendering
* Graphics/RenderQueue: Billboard drawing now works (WIP)
At 1/4 of previous code performances due to individually process of billboards
* Add new render queues proof of concept + scissoring support (WIP)
* Graphics: Adapt basic sprites rendering to new render queue system
* Graphics: Fix layers when rendering sprites
* Graphics/RenderQueue: Fix sprite default overlay
* Graphics: Enable scissor test by default
* SDK/Widgets: Enable scissoring on widgets
* Graphics: Handle almost everything with the new renderqueues system
Todo:
- Billboard rendering
- Proper model rendering
* Graphics/RenderQueue: Billboard drawing now works (WIP)
At 1/4 of previous code performances due to individually process of billboards
* Graphics/RenderQueues: Add full support for billboards
* Graphics/RenderQueue: Cleanup and improve billboard rendering
* Graphics/RenderQueue: Fix model drawing
* Examples/Particles: Fix lighting on space station
* Graphics: Cleanup forward render queue/technique
* Fix compilation under Linux
* Graphics/ForwardRenderTechnique: Fix case when scissoring is enabled on material but disabled on element
* Add support for Deferred Shading
* SDK/Widgets: Fix widget rendering
* Graphics: Remove legacy code from render queues
* Graphics: Fix some objects sometimes not showing up due to broken scissor box
* Fix compilation error
* Sdk/GraphicsGraphics: Fix bounding volume
* SDK/World: Fix self-assignation
* Update changelog for render queues
2018-04-11 19:36:52 +02:00
Jérôme Leclercq
dae2b6f5a6
Fix an oopsie
2018-04-10 16:22:18 +02:00
Jérôme Leclercq
938aa79ffc
Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
2018-04-10 16:13:00 +02:00
Jérôme Leclercq
d6392c33ad
Core/Directory: Fix GetResultSize and IsResultDirectory methods on Posix
2018-04-10 16:12:15 +02:00
Lynix
42a263ed6a
Graphics/Billboard: Fix bounding volume
2018-04-09 20:33:40 +02:00
Lynix
c9904e7d20
Audio/Sound: Fix copy constructor not copying looping state
2018-04-08 18:50:42 +02:00
Lynix
3c4c0fab66
Audio: Make Music, Sound, SoundEmitter movable
2018-04-08 17:51:25 +02:00
Lynix
05a5c4c42e
Utility/OBJLoader: Add support for emissive/normal maps by using custom keywords
2018-04-04 21:30:59 +02:00
Lynix
e8e3c29f37
Refactor IpAddressImpl.cpp (Windows) + update changelog
2018-04-02 16:30:39 +02:00
Lynix
63ee3ca8d4
Network/Socket: Fix IPv6 decoding on posix
2018-04-01 21:56:45 +02:00
Lynix
c869967928
Network/Socket: Fix dual-stack support
2018-04-01 21:34:50 +02:00
Lynix
a5400f07c9
Network/Socket: Fix IPv6 encoding
2018-04-01 21:30:07 +02:00
Lynix
df510aeb78
Network/Socket: Fix broadcast & dual-stack on Posix
2018-04-01 21:01:13 +02:00
Lynix
eeba7f96a0
Fix compilation
2018-04-01 20:52:52 +02:00
Lynix
715729fc02
Network: Add support for dual-stack sockets
2018-04-01 20:48:50 +02:00
Jérôme Leclercq
edec42038c
Fix compilation for MinGW
2018-03-27 15:07:34 +02:00
Lynix
0e3871b19e
Physics3D/Collider3D: Fixed ConvexCollider3D::GetType()
2018-03-26 20:24:17 +02:00
Lynix
7f1419b34e
Physics3D/PhysWorld3D: Remove const from argument in BodyIterator
2018-03-26 20:23:30 +02:00
Jérôme Leclercq
554fcd6492
Physics3D/Collider3D: Add ForEachPolygon method
2018-03-26 16:57:16 +02:00
Lynix
665512402c
Fix some warnings
2018-03-20 21:58:46 +01:00
Lynix
69f079fcc8
Core/Serialization: Add type tag parameters
2018-03-20 20:56:06 +01:00
Lynix
96f3104347
Fix Basic uber-shader compilation on some drivers
2018-03-10 13:02:30 +01:00
Lynix
f706ac0a50
ColorBackground: Fix shader error
2018-03-10 10:38:31 +01:00
Jérôme Leclercq
cd31e6c397
Add buffer support
2018-03-09 16:49:01 +01:00
Jérôme Leclercq
9b8e8042e4
Merge fix
2018-03-09 16:47:31 +01:00
Lynix
3036c32d9d
Core/Bitset:
2018-03-06 20:25:29 +01:00
Lynix
af75e2cc68
Merge branch 'physics3d-material'
2018-02-17 12:50:46 +01:00
Faymoon
cd526d6145
Remove some useless "Nz::" ( #159 )
...
* Remove useless "Nz::"
* Remove useless "Nz::"
* REmove useless "Nz::"
* Remove useless "Nz::"
2018-02-17 12:47:16 +01:00
Lynix
39c89c52f4
Platform/Window: Fix size event triggering key event on Windows
2018-02-15 21:08:38 +01:00
Jérôme Leclercq
7d54ac4c10
Merge branch 'master' into vulkan
2018-02-13 13:06:01 +01:00
Lynix
6e3bcac25d
Physics3D/PhysWorld3D: Take BodyIterator by const reference
2018-02-12 21:26:14 +01:00
Lynix
af12c5ed92
Merge branch 'master' into physics3d-material
2018-02-11 14:39:14 +01:00
Jérôme Leclercq
45af15d802
Physics[2|3]D/PhysWorld[2|3]D: Add max step count
2018-02-09 17:29:20 +01:00
Jérôme Leclercq
bb7c97ed9a
Add PhysWorld2D::UseSpatialHash
2018-02-09 17:25:11 +01:00
Jérôme Leclercq
17849226e4
Physics2D/PhysWorld2D: Add iteration count control
2018-02-09 17:24:00 +01:00
Jérôme Leclercq
fb3eb9443e
Core/Clock: Restart now returns the elapsed time in milliseconds
2018-02-07 15:02:44 +01:00
Lynix
1e88e23854
Merge branch 'master' into physics3d-material
2018-01-28 14:28:44 +01:00
Lynix
7c1ffea19c
Core/Win32: Encapsulate internal struct
2018-01-28 14:28:33 +01:00
Lynix
3afdbd2141
Fix typo
2018-01-28 14:27:52 +01:00
Lynix
a8c1a2f488
Network/Win32: Fix a parsing error when compiler doesn't support __has_include
2018-01-26 20:57:14 +01:00
Lynix
ce2324ea2a
Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
2018-01-26 20:41:52 +01:00
Jérôme Leclercq
3f7bac186b
Network/Win32: Second patch for MinGW #157
...
Extending Mstcpip.h fix using C++17 feature __has_include
2018-01-26 16:11:53 +01:00
Jérôme Leclercq
b93320613e
Network/Windows: MinGW compatibility fix
2018-01-26 15:41:01 +01:00
Lynix
fd727be03f
Utility/SimpleTextDrawer: Fix space screwing up bounding box
2018-01-24 20:56:38 +01:00
Lynix
b47f5210e0
Physics3D/PhysWorld3D: Add ForEachBodyInAABB method
2018-01-20 19:36:21 +01:00
Lynix
c592acfd5f
Merge branch 'master' into physics3d-material
2018-01-20 14:21:01 +01:00
Lynix
5380b6a41b
Lua/LuaInstance: Move library initializations to LoadLibraries
2018-01-20 14:20:46 +01:00
Jérôme Leclercq
58e6c8e36c
Physics2D/RigidBody2D: Fix movement not moving registered and simulation enabled states
2018-01-18 10:32:48 +01:00
Lynix
c1cebe1425
Merge branch 'master' into physics3d-material
2018-01-17 18:25:57 +01:00
Jérôme Leclercq
7a04c6f83b
Physics2D/RigidBody2D: Add EnableSimulation/IsSimulationEnabled
2018-01-17 17:13:50 +01:00
Lynix
1c3654148d
Merge branch 'master' into vulkan
2018-01-16 21:15:58 +01:00
germinolegrand
1e55c4d9e9
Prerequisites instead of Prerequesites (typo) #152 ( #153 )
2018-01-16 12:23:01 +01:00
Lynix
4cb598c32b
Merge branch 'master' into physics3d-material
2018-01-14 14:40:57 +01:00
Faymoon
4f6bf30f24
Constraint 2D ( #147 )
...
* Rename all Constraint by [name]Constraint3D
* Create Refs and Libraries for Constraint2D
* Remove ref to PhysWorld in Constraints ctors
* Update Constraint2d ctor to have RigiBodies first
* Add New static function for all constraints and fix an oopsie
* Add Contraint Library and remove all library useless aliases
* Add ConstraintComponent2D
* remove useless definition of Constraint2D library
* Fix : getting the world of the constraint before having created it
* Make the GetStaticBody function return a ref
* Remove : Useless AddJoint Fonction and Update CreateJoint function
* Update PhysicsSystem3D because GetStaticBody return now a ref
* Oops
* Having done something with the 3D and i was needing 2D
* Add ConstraintComponent as friend of Collision and PhysicsComponent
* Update all the Get[Static/Rigid]Body function so they return a pointer
* fix the bugs caused by the commit before
* update : CreateConstraint lambda for the nullptr case
* remove the useless use of const pointer
* Update : CreateConstraint function
* Update ChangeLog.md
2018-01-13 11:03:03 +01:00
Lynix
98eaf83ea9
Utility/OBJParser: Fix negative offset handling for good
2018-01-07 22:36:39 +01:00
Lynix
ee77899a6a
Utility: Add JPEG image saver
2018-01-07 03:19:55 +01:00
Lynix
8697cf33e6
Utility/OBJParser: Fix relative offsets loading
2018-01-06 02:46:51 +01:00
Lynix
18a4099958
Merge branch 'master' into physics3d-material
2018-01-05 20:49:46 +01:00
Jérôme Leclercq
2bef737dc6
Network/ENetPeer: Fix indent
2018-01-05 15:39:47 +01:00
Jérôme Leclercq
98a03cb543
Network/SocketPoller: Fix potential bug on Connect (Posix)
2018-01-05 15:39:35 +01:00
Lynix
84a3fc1a91
Physics3D/World: Add more control on materials
2017-12-17 19:08:45 +01:00
Lynix
9b431e54c9
Merge branch 'master' into physics3d-material
2017-12-16 21:21:44 +01:00
Lynix
ec22b8d643
Lua/LuaInstance: Fix movement, for real
2017-12-16 21:21:35 +01:00
Lynix
36c1e4e8cb
Merge branch 'master' into physics3d-material
2017-12-16 19:09:13 +01:00
Lynix
f5df0eb056
Lua/LuaInstance: Fix movement
2017-12-16 19:09:01 +01:00
Lynix
d1060047f8
Merge branch 'master' into physics3d-material
2017-12-14 19:50:14 +01:00
Lynix
fd8306f17f
Core/String: Replace implicit operator std::string by ToStd::String
2017-12-14 19:50:06 +01:00
Lynix
e302667c21
Merge branch 'master' into physics3d-material
2017-12-14 18:15:35 +01:00
Lynix
5aab9b248d
Sdk/PhysicsComponent3D: Fix cloning by preserving physics states
2017-12-13 22:17:50 +01:00
Jérôme Leclercq
9272efa159
Core/Thread: Fix possible infinite recursion
2017-12-13 17:42:45 +01:00
Jérôme Leclercq
192321b448
Network: Fix uninitialized values (found by valgrind)
2017-12-13 12:55:03 +01:00
Lynix
afa874de26
WIP on materials
2017-12-10 22:17:41 +01:00
Lynix
33b3b2feaf
Physics3D/RigidBody3D: Add simulation property
2017-12-10 13:35:58 +01:00
Lynix
b8e447e4fe
Physics3D/RigidBody3D: Fix copy constructor not copying all states
2017-12-10 12:10:47 +01:00
Lynix
0df70dcb16
Physics3D/RigidBody3D: Rename [Get|Set]Velocity to [Get|Set]LinearVelocity
2017-12-10 12:09:36 +01:00
Lynix
24278dafdc
Core/MemoryStream: Fix assertion trigger when writing zero-sized block
2017-12-09 20:34:07 +01:00
Jérôme Leclercq
503378ed47
Try some black magic
2017-12-04 16:22:01 +01:00
Lynix
0a72ddb478
Graphics/SkyboxBackground: Fix distorsion on skybox
2017-12-01 10:20:00 +01:00
Lynix
6d09abbc2c
Physics3D/RigidBody3D: Add [Get|Set][Angular|Linear]Damping
2017-11-30 12:04:33 +01:00
Jérôme Leclercq
a9fc553bd5
Core/Directory: Try to fix default directory permission
2017-11-29 16:09:46 +01:00
Jérôme Leclercq
45576f5691
Core/Directory: Fix recursive Create method on Posix
2017-11-29 16:01:07 +01:00
Jérôme Leclercq
ae29fe12cb
Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
2017-11-29 15:13:07 +01:00
Jérôme Leclercq
ffa6d5c4cc
Core/File: Fix error handling when opening file on posix
2017-11-29 15:12:17 +01:00
Lynix
72bcb1fda7
Physics2D/RigidBody2D: Fix SetGeom attribute copy
2017-11-28 23:20:45 +01:00
Lynix
4c6b5d0546
Merge branch 'master' into vulkan
2017-11-24 20:14:39 +01:00
REMqb
4d195e0e08
~ Fix widgets / events not working after the window defocused then focused again ( #144 )
2017-11-23 00:01:55 +01:00
Jérôme Leclercq
1b80ad5f02
Platform/Window: Revert wrong mouse position fix
2017-11-22 10:26:58 +01:00
REMqb
ecadcabfa9
~ Fix position of the mouse was set after the event callbacks were run. ( #143 )
2017-11-22 00:35:32 +01:00
Jérôme Leclercq
f84ac9c52b
Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
2017-11-21 12:26:45 +01:00
Jérôme Leclercq
3589a2bc8e
Core/Flags: Reworked Flags class
2017-11-21 12:26:22 +01:00
Gawaboumga
f991a9529e
General bug fixes ( #142 )
...
* Core/Bitset: Fix TestAll method
* Fix documentation
* Fix color and their conversions
* Core/ByteStream: Fix return of Write
* Fix compiler warnings
* Math/Algorithm: Fix angle normalization
* Math/BoundingVolume: Fix lerp
* Math: Fix relation between Matrix4 and Quaternion
* More tests
* X11/Window: Fix mouse moved event generated when doing Mouse::SetPosition
* Update ChangeLog
* Should fix compilation on Windows
* Should fix compilation on Windows
Forgot to include array for Windows
2017-11-21 12:16:46 +01:00
Lynix
f2506ee918
Network/ENetHost: Fix service time precision
2017-11-20 21:04:50 +01:00
Jérôme Leclercq
e627be3f72
Utility/Buffer: Fix Destroy() not really destroying buffer
2017-11-08 14:35:11 +01:00
Lynix
786a11fc78
Graphics/Material: Fix missing reflection initialization
2017-10-31 00:14:50 +01:00
Lynix
d688cecbde
Renderer: Replaced RenderTarget::Get[Height|Width] by RenderTarget::GetSize
...
Utility: Removed Window::Get[Height|Width] methods
2017-10-28 23:26:22 +02:00
Lynix
bf8ebbd046
Platform/WindowImpl: Fix threaded windows deadlock when using some methods
2017-10-28 00:52:26 +02:00
Lynix
e7eaea37d7
Reencode resources
2017-10-26 23:38:33 +02:00
Lynix
9daadb73bc
Utility: Make mesh loader use the parameters vertex declaration
2017-10-21 04:51:05 +02:00
Lynix
995dfddafa
Utility/MeshParam: Use constref instead of pointer
2017-10-19 21:05:48 +02:00
Lynix
0e45876b89
Fix compilation with MinGW
2017-10-18 22:02:36 +02:00
Lynix
b47b89ed8b
Utility/Mesh: Add index and vertex buffer flags in MeshParams
2017-10-18 00:29:34 +02:00
Jérôme Leclercq
b3f3d16f13
Physics2D: Fix DebugDraw of polygons
2017-10-16 11:57:23 +02:00
Jérôme Leclercq
6e7b78611d
Physics2D/RigidBody2D: Add SetStatic method
2017-10-16 11:56:41 +02:00
Lynix
ee06fffd03
Fix StringStream tests
2017-10-15 14:54:28 +02:00
Lynix
9911c6e07c
Core: Optimize StringStream
2017-10-15 12:25:08 +02:00
Lynix
a9307d5e7b
Fix compilation
2017-10-14 19:22:27 +02:00
Lynix
46cf06f446
Fix previous commit oopsies
2017-10-14 18:27:37 +02:00
Lynix
683b09144d
Core: Replace StackAllocation by StackArray
...
This will cleanup alloca usage a little bit
2017-10-14 18:04:16 +02:00
Jérôme Leclercq
101783126c
Physics2D: Add DebugDraw method
2017-10-13 15:14:37 +02:00
Lynix
fce0db09e8
Add support for reflection in PhongLighting shader
2017-10-11 00:07:57 +02:00
Lynix
85aa01a562
Physics2D: Add constraint support
2017-10-10 21:52:35 +02:00
Jérôme Leclercq
46e684c275
Network/ENetHost: Fix compression callbacks
2017-10-10 21:52:32 +02:00
Jérôme Leclercq
3282534bba
SocketPoller: Fix behavior on Windows and BSD
2017-10-10 21:52:31 +02:00
Jérôme Leclercq
874599fefd
Network/SocketPoller: Uniformize behavior accross platforms
...
On Windows, a closed connection will mark as ready for read/write
2017-10-10 21:52:30 +02:00
Lynix
c763dea4e1
Merge branch 'master' into reflection-mapping
2017-10-02 21:11:15 +02:00
Jérôme Leclercq
99d21b8722
Fix compilation and some warnings
2017-10-02 16:18:15 +02:00
larnin
40a678889d
Vertex declaration changes ( #135 )
...
* Add type to ComponentType conversion
* Change type to ComponentType conversion
* Change assert to condition, add check on particle mapper.
* Change particle life type
* Changes as requested
* Fix Travis try 1
* Changes as requested
* move IsSuitableForComponent to inl
2017-10-02 15:21:03 +02:00
Gawaboumga
bbac0838dd
Include-What-You-Use ( #137 )
...
* IWYU Core
* IWYU Noise
* IWYU Utility
* IWYU Audio
* IWYU Platform
* IWYU Lua
* IWYU Network
* IWYU Physics2D
* IWYU Physics3D
* IWYU Renderer
* IWYU Graphics
* IWYU NDKServer
* IWYU Fix
* Try to fix compilation
* Other fixes
2017-10-01 11:17:09 +02:00
Lynix
508554fcb1
Fix some more warnings
2017-09-30 15:00:42 +02:00
S6066
4f0435754f
Fixed Nz::String's implementation of std::geltine ( #136 )
...
* Fix Nz::String's std::getline
* Bugfix
* Bugfix again
2017-09-30 14:23:42 +02:00
Lynix
2cd9fa2b7a
Core: Add MovablePtr class
2017-09-30 13:57:25 +02:00
Jérôme Leclercq
cc4fdf2476
Network/ENet: Add compressor support
2017-09-22 15:22:43 +02:00
Jérôme Leclercq
74b5cada88
Utility/SimpleTextDrawer: Fix bounds computation
2017-09-21 14:40:22 +02:00
Lynix
9a6b007e70
Network/ENetHost: Fix crash
2017-09-16 10:47:00 +02:00
Lynix
c4edf54297
Vulkan/RenderBuffer: WIP
2017-09-16 10:36:41 +02:00
Lynix
8a55888ada
VulkanRenderer: Fix transfer queue choice
2017-09-16 10:35:30 +02:00
Jérôme Leclercq
c211abd977
Network/ENetHost: Fix typo
2017-09-14 14:12:32 +02:00
Jérôme Leclercq
f2870b83c0
Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
2017-09-08 09:41:10 +02:00
Jérôme Leclercq
b4d0854028
Physics2D/PhysWorld2D: Add damping control
2017-09-08 09:41:08 +02:00
Lynix
53020f27a5
Physics2D/RigidBody2D: Fix mass incorrectly reported at 0 after copy
2017-09-07 18:38:31 +02:00
Jérôme Leclercq
3153af485c
Physics2D: Handle kinematic objects properly
2017-09-07 16:16:11 +02:00
Jérôme Leclercq
305a72a7d2
Lua/LuaState: Fix movement not stealing pointer
2017-09-04 10:05:23 +02:00
Jérôme Leclercq
5915b6ce3a
Network/ENetHost: Fix error when using ENetHost without listening
2017-09-01 15:24:42 +02:00
Jérôme Leclercq
e37a7ad5fd
Network/ENetHost: Dismiss external peer connection if listen address is loopback
2017-09-01 15:22:27 +02:00
Jérôme Leclercq
7074876d68
Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
2017-09-01 14:26:30 +02:00
Jérôme Leclercq
38bd348ed6
Physics2D/RigidBody2D: Allows better control on inertia
2017-09-01 14:26:28 +02:00
Jérôme Leclercq
c087003bda
Physics2D/RigidBody2D: Use kinematic object instead of static ones when mass is set to zero
2017-09-01 13:34:04 +02:00
Lynix
a1ddce8dfb
Utility/SimpleTextDrawer: Fix drawer regenerating glyphs everytime
2017-09-01 08:59:27 +02:00
Lynix
01e928e324
Renderer/Renderer: Default to current GLSL version for AST generation
2017-08-30 18:21:45 +02:00
Lynix
cb69b1ed01
Renderer/ShaderAst: Add ConditionalStatement
2017-08-30 18:21:44 +02:00
Lynix
205b8b1ba6
Renderer/ShaderAst: Add Swizzle
2017-08-30 18:21:43 +02:00
Lynix
832237c6d4
Renderer/ShaderAst: Fix a few multiply/divide cases
2017-08-30 18:21:42 +02:00
Lynix
8a68df4c56
Forgot to save all files..
2017-08-30 18:21:41 +02:00
Lynix
f0a7430d34
Renderer/ShaderAst: Fix compilation errors on Linux
2017-08-30 18:21:40 +02:00
Lynix
bd8a3ba47d
Renderer: Replace shaders files by runtime-generated GLSL
2017-08-30 18:21:40 +02:00
Lynix
8fd152aec0
Renderer/ShaderAst: Rename Builtin enum to BuiltinEntry
2017-08-30 18:21:39 +02:00
Lynix
4a67f56e80
Renderer/GlslWriter: Fix exception
2017-08-30 18:21:38 +02:00
Lynix
a5a228e0c7
Renderer/ShaderAst: Add Constant overloads
2017-08-30 18:21:36 +02:00
Lynix
2a57af9896
Renderer/ShaderAst: Add Cast node
2017-08-30 18:21:34 +02:00
Lynix
a84391cf08
Renderer/ShaderAst: Add support for expression type
2017-08-30 18:21:33 +02:00
Lynix
9e8785cf01
Renderer/GlslWriter: Fix comment sections being "Uniforms" no matter the section value
2017-08-30 18:21:32 +02:00
Lynix
3ed661f387
Renderer/ShaderAst: Add input and outputs variables
2017-08-30 18:21:32 +02:00
Lynix
e82fb7fef4
Renderer/ShaderAst: Add NamedVariable and BuiltinVariable classes
2017-08-30 18:21:30 +02:00
Lynix
43e23fea47
Renderer/GlslWriter: Add comment sections
2017-08-30 18:21:29 +02:00
Lynix
114c4dbf58
Renderer/GlslWriter: Fix typo
2017-08-30 18:21:28 +02:00
Lynix
f487761940
Renderer/GlslWriter: Add #version directive
2017-08-30 18:21:28 +02:00
Lynix
d538a7ddf5
Renderer/GlslWriter: Add support for Uniform and Parameters variables
2017-08-30 18:21:27 +02:00
Lynix
5c3e67bb26
Renderer/GlslWriter: Move variables to the function scope
2017-08-30 18:21:26 +02:00
Lynix
5c6df52fbf
Commit current work
2017-08-30 18:21:25 +02:00
Lynix
c48d752ad4
Utility/MeshLoader: Fix pre-transformation matrix not affecting normal and tangents in some cases ( Fix #131 )
2017-08-30 15:58:19 +02:00
Gawaboumga
5aa072cee3
New module: Platform - Split window management from Utility module ( #128 )
...
* New module: Platform - Split window management from Utility module
Final touch
* NDK/SDK: Bring back initialization of Utility
2017-08-30 10:22:50 +02:00
Gawaboumga
41a1b5d493
Physics2D tests ( #129 )
...
* Quaternion: Fix singularity on Z axis when converting to euler angles
* CollisionComponent2D: Add method to retrieve AABB
* Collider2D: Fix constructor for Box with Vector2
* Physics2D: Fix rotation (Chipmunk works with radian and Nazara degrees) and copy constructor of RigidBody2D
* Colider2D: Add New for convex and tests for the new classes
2017-08-20 21:47:23 +02:00
Lynix
596d65f1ed
Merge branch 'master' into vulkan
2017-08-20 21:35:51 +02:00
Lynix
9613ad5de6
Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
2017-08-16 20:33:40 +02:00
Lynix
b7692400c4
HardwareBuffer: Fix wtf behavior
2017-08-16 20:33:23 +02:00
Jérôme Leclercq
5531e81e65
Core: Add CRC64 and regenerate global headers
2017-08-15 12:32:19 +02:00
Lynix
84e5ea0023
SimpleTextDrawer: Fix Faux-Bold
2017-08-13 21:40:41 +02:00
Lynix
e512302305
RigidBody2D: Add experimental SetMomentOfInertia method
2017-08-06 23:46:55 +02:00
Lynix
506a963539
SimpleTextDrawer: Assert after update
2017-08-06 23:37:14 +02:00
Lynix
cd661144a0
Vulkan: Fix some errors
2017-08-06 12:14:22 +02:00
Lynix
4a156ab3d7
Vulkan: Add better handling for errors
2017-08-06 12:14:11 +02:00
Lynix
5b922cf52f
Vulkan: Add buffer placeholder
2017-08-06 12:13:08 +02:00
Jérôme Leclercq
3d368b2fe7
Network/SocketPoller: Fix behavior of Wait method (-1 will block)
2017-08-04 13:37:17 +02:00
Jérôme Leclercq
b64ab862fe
Fix warnings
2017-07-27 14:39:48 +02:00
Jérôme Leclercq
6047018082
Physics3D/Collider3D: Improve CompoundCollider3D constructor
2017-07-27 11:40:42 +02:00
Jérôme Leclercq
afdc018778
Physics2D/Collider2D: Implement CompoundCollider2D and ConvexCollider2D
2017-07-27 11:39:23 +02:00
Jérôme Leclercq
b00487c88c
PhysicsID/RigidBody: Add GetWorld() accessor
2017-07-25 14:44:30 +02:00
Jérôme Leclercq
28e8377708
Physics2D: Fix shape BB
2017-07-12 16:23:14 +02:00
Jérôme Leclercq
aac8d8301b
Network: Fix Linux build
2017-07-11 12:19:11 +02:00
Jérôme Leclercq
0931ee39e0
Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
2017-07-11 12:12:44 +02:00
Jérôme Leclercq
394f0bc730
Network/ENetHost: Fix hostname resolve
2017-07-11 12:12:38 +02:00
Jérôme Leclercq
cbcfa5cb4d
Network/ENet: Fix throttle bug
2017-07-11 12:12:12 +02:00
Jérôme Leclercq
9fb9289d6e
Network/Socket: Fix IPv6 handling
2017-07-11 12:11:43 +02:00
Jérôme Leclercq
b4732d8c17
Add Udp::ReceiveMultiple method
2017-07-11 12:11:20 +02:00
Lynix
29cad19253
Fix some compilation errors
2017-07-04 23:57:43 +02:00
Lynix
8cdd922177
VulkanRenderer: Handle new errors cases
2017-07-04 23:41:08 +02:00
Lynix
2323060f30
Remove unused code
2017-07-04 23:24:23 +02:00
Lynix
9944a228b5
Merge branch 'master' into vulkan
2017-07-04 22:41:29 +02:00
Lynix
67dbb9e7c8
Lua/LuaState: Fix Execute not being able to return values
2017-06-28 23:22:50 +02:00
Jérôme Leclercq
2ca844be63
Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
2017-06-21 18:10:51 +02:00
Jérôme Leclercq
b2e23cfb56
Mark every bool conversion as explicit
2017-06-21 18:10:46 +02:00
Lynix
bb512ff17a
Network/SocketPoller: Fix IsReadyTo* on Windows Vista+
2017-06-20 20:50:39 +02:00
Lynix
175a98c4fc
Fix compilation
2017-06-20 08:28:57 +02:00
Lynix
50a3f78f91
Core/Thread: Add posibility of setting thread name
2017-06-20 08:16:08 +02:00
Lynix
e0ede5bf2d
Physics2D/RigidBody2D: Little refactor
2017-06-20 06:59:53 +02:00
Lynix
dc28a9161b
Network/TcpClient: Fix Send hanging when used in non-blocking mode
2017-06-20 06:57:59 +02:00
Lynix
5fe782bd46
Core/FileImpl: Remove implicit region locking (Windows)
2017-06-20 06:57:58 +02:00
Gawaboumga
47a22c2785
Fix wrong aabb returned from PhysicsComponent2D ( #127 )
2017-06-20 06:53:39 +02:00
Jérôme Leclercq
6ff510ad4a
Merge pull request #126 from Gawaboumga/Concurrent-File-Writing
...
Fix the possibility to have two processes writing to the same file on Linux
2017-06-20 06:53:21 +02:00
Gawaboumga
e95d252cde
Add lock file on Linux and the possibility to have two processes writing to the same one
2017-06-15 18:03:19 +02:00
Jérôme Leclercq
6759abc878
Core/Thread: Rework ThreadImpl:Sleep for POSIX systems (fix yield behavior)
2017-06-14 10:11:02 +02:00
Lynix
487bd64bcf
Merge remote-tracking branch 'refs/remotes/origin/master' into reflection-mapping
2017-06-10 22:33:03 +02:00
Lynix
a82de92377
Merge remote-tracking branch 'refs/remotes/origin/master' into enet_wip_nothing_to_see_here
2017-06-10 22:29:31 +02:00
Lynix
78182502e3
Lua/LuaInstance: Fix missing memory/time methods
2017-06-10 22:29:17 +02:00
Jérôme Leclercq
ab1eccde82
Fix compilation
2017-06-09 02:07:51 +02:00
Jérôme Leclercq
35ba78510b
Fix compilation
2017-06-09 02:06:14 +02:00
Lynix
cea89abc51
Merge remote-tracking branch 'refs/remotes/origin/master' into enet_wip_nothing_to_see_here
2017-06-09 01:47:33 +02:00
Jérôme Leclercq
01edc4fb21
Add coroutine support (WIP)
2017-06-08 15:53:17 +02:00
Jérôme Leclercq
a8129b218b
Refactor LuaInstance to prepare coroutine handling
2017-06-07 21:18:07 +02:00
Lynix
e32c1a8b8b
Utility/PixelFormat: Move Flip to .cpp
...
Because of std::swap_range usage (Thanks Microsoft)
2017-06-04 17:28:58 +02:00
Jérôme Leclercq
17d9cd6e7d
Merge remote-tracking branch 'refs/remotes/origin/master' into enet_wip_nothing_to_see_here
2017-06-01 17:25:33 +02:00
Jérôme Leclercq
8752d1e0f4
Network: Add ErrorToString for ResolveError/SocketError
2017-06-01 17:25:21 +02:00