Changesets: DarkRadiant

master 66987e21

11.03.2021 02:31

jonri

Committer: GitHub


Details Diff
0000426: Add a script to detect duplicate entities

Two entities will be considered duplicates if they have the same origin, model, classname, and rotation. Duplicates will be selected so the mapper can take a further action of their choosing.
Affected Issues
0000426
add - install/scripts/commands/find_duplicate_entities.py Diff File

master 622c5ca0

09.03.2021 20:54

orbweaver


Details Diff
Add a test for omni light texture matrix

Add a new getRendererLight() method to the ILightNode interface, and use this
to retrieve and examine the texture transformation matrix of a simple omni
light.
mod - include/ilightnode.h Diff File
mod - radiantcore/entity/light/LightNode.h Diff File
mod - test/CMakeLists.txt Diff File
add - test/Renderer.cpp Diff File

master 1db3e735

09.03.2021 20:10

orbweaver


Details Diff
Colour4 stores floats rather than doubles

Using doubles in vectors may be necessary for accuracy when storing brush and
patch geometry, but using doubles just to store OpenGL colours is a waste of
bytes.

Also add some tests for Vector3 and Vector3f packing, ensuring that the values
are contiguous and can be passed to functions like glUniform3fv().
mod - libs/debugging/render.h Diff File
mod - libs/render/Colour4.h Diff File
mod - radiant/xyview/tools/MeasurementTool.cpp Diff File
mod - radiantcore/rendersystem/backend/OpenGLShader.cpp Diff File
mod - radiantcore/rendersystem/backend/OpenGLShaderPass.cpp Diff File
mod - radiantcore/rendersystem/backend/glprogram/GLSLBumpProgram.cpp Diff File
mod - test/math/Vector3.cpp Diff File

master 07a10bbf

08.03.2021 21:03

orbweaver


Details Diff
0000108: ambient lights now render correctly

Ambient lights had in fact never worked since the switch to GLSL, since the
ambient light code was only ever present in the old Cg shaders. The GLSL shader
is now updated to support ambient lights through a new bool uniform, which
works for both models and brushes.
Affected Issues
0000108
mod - include/iglprogram.h Diff File
mod - install/gl/interaction_fp.glsl Diff File
mod - radiantcore/rendersystem/backend/OpenGLShaderPass.cpp Diff File
mod - radiantcore/rendersystem/backend/glprogram/GLSLBumpProgram.cpp Diff File
mod - radiantcore/rendersystem/backend/glprogram/GLSLBumpProgram.h Diff File

master 8cd54cd5

08.03.2021 20:25

orbweaver


Details Diff
Remove light brightness doubling in shader

For some reason there was a hard-coded scale factor of 2.0 applied to all
lights in the shader (this is over and on top of the 2x scaling via the
lightScale setting in the .game file, so 4x brightness in total), resulting in
lights appearing far too bright and in many areas completely washed out.

The brightness now appears much closer to that seen in game (possibly slightly
darker because the game is providing some brightness and gamma scaling of its
own, which is not replicated in DarkRadiant).
mod - install/gl/interaction_fp.glsl Diff File

master 0b00b9fd

07.03.2021 20:30

orbweaver


Details Diff
Simplify vertex colour handling in interaction shader

Modern shaders can work fine with boolean uniforms, so we don't need the
awkward "scale and offset" approach to vertex colour handling. Instead we just
examine a boolean to determine if the vertex colour should be inverted, and
perform the calculation accordingly.
mod - install/gl/interaction_fp.glsl Diff File
mod - radiantcore/rendersystem/backend/glprogram/GLSLBumpProgram.cpp Diff File
mod - radiantcore/rendersystem/backend/glprogram/GLSLBumpProgram.h Diff File

materialeditor2 9c3d3139

07.03.2021 13:41

greebo


Details Diff
0002132: The grid should write to the depth buffer, to allow for better visualisation of objects near the XY plane Affected Issues
0002132
mod - radiant/camera/CamWnd.cpp Diff File

materialeditor2 7579979e

07.03.2021 12:42

greebo


Details Diff
0005532: Start with lighting mode enabled and time running, if we have a material to show in the first place Affected Issues
0005532
mod - libs/wxutil/preview/RenderPreview.cpp Diff File
mod - radiant/ui/materials/MaterialPreview.cpp Diff File

master 4d19f816

06.03.2021 14:53

orbweaver


Details Diff
Remove InternalMaterial mechanism

Constructing an entire subclass of Material just to return a single string name
is a needlessly complex way of debugging internal shader construction; instead,
a simple getName() method on the Shader interface provides the same
functionality with much less code.

This also means that the Material interface can be kept pure, rather than being
filled with stub method implementations just to make the InternalMaterial class
shorter.
mod - include/irender.h Diff File
mod - radiantcore/rendersystem/backend/OpenGLShader.cpp Diff File
mod - radiantcore/rendersystem/backend/OpenGLShader.h Diff File
mod - test/Entity.cpp Diff File

materialeditor2 c5625e6e

06.03.2021 06:18

greebo


Details Diff
Update .gitignore to hide incremental link files
mod - .gitignore Diff File

materialeditor2 890d89e6

06.03.2021 06:18

greebo


Details Diff
0005532: Got the cube to rotate, it's going to be replaced with a model in the end anyway Affected Issues
0005532
mod - radiant/ui/materials/MaterialPreview.cpp Diff File

materialeditor2 0ab29770

06.03.2021 06:17

greebo


Details Diff
0005532: Extend brush interface by IBrush::clear() to remove all faces Affected Issues
0005532
mod - include/ibrush.h Diff File
mod - radiantcore/brush/Brush.h Diff File

materialeditor2 173d8570

06.03.2021 06:16

greebo


Details Diff
Set VC++ option /ZI the enable Edit and Continue
mod - tools/msvc/properties/DarkRadiant Base Debug Win32.props Diff File
mod - tools/msvc/properties/DarkRadiant Base Debug x64.props Diff File

materialeditor2 f6eddb66

06.03.2021 05:32

greebo


Details Diff
0005532: Rotating cube, with ugly code Affected Issues
0005532
mod - libs/wxutil/preview/RenderPreview.cpp Diff File
mod - libs/wxutil/preview/RenderPreview.h Diff File
mod - radiant/ui/materials/MaterialPreview.cpp Diff File

materialeditor2 69a5bb53

06.03.2021 04:53

greebo


Details Diff
0005532: Working on the preview scene Affected Issues
0005532
mod - radiant/ui/materials/MaterialPreview.cpp Diff File
mod - radiant/ui/materials/MaterialPreview.h Diff File

materialeditor2 6ddf6b4c

06.03.2021 04:53

greebo


Details Diff
0005532: Fix crash in lighting mode due to (yet unsupported) VFP stages Affected Issues
0005532
mod - radiantcore/rendersystem/backend/OpenGLShader.cpp Diff File

materialeditor2 f238d0b7

05.03.2021 17:31

greebo


Details Diff
0005532: Hide the grid and the toolbar button in the MaterialPreview Affected Issues
0005532
mod - libs/wxutil/preview/RenderPreview.cpp Diff File
mod - libs/wxutil/preview/RenderPreview.h Diff File
mod - radiant/ui/materials/MaterialPreview.cpp Diff File
mod - radiant/ui/materials/MaterialPreview.h Diff File

materialeditor2 244ad4ef

05.03.2021 17:19

greebo


Details Diff
0005532: Setup empty MaterialPreview class Affected Issues
0005532
mod - radiant/CMakeLists.txt Diff File
mod - radiant/ui/materials/MaterialEditor.cpp Diff File
mod - radiant/ui/materials/MaterialEditor.h Diff File
add - radiant/ui/materials/MaterialPreview.cpp Diff File
add - radiant/ui/materials/MaterialPreview.h Diff File
mod - tools/msvc/DarkRadiant.vcxproj Diff File
mod - tools/msvc/DarkRadiant.vcxproj.filters Diff File

master 1c352965

05.03.2021 06:24

greebo


Details Diff
0005532: Compilation fixes Affected Issues
0005532
mod - radiant/ui/common/MaterialPopulator.cpp Diff File
mod - radiant/ui/materials/MaterialEditor.cpp Diff File
mod - radiant/ui/materials/MaterialEditorModule.cpp Diff File
mod - radiantcore/shaders/MapExpression.h Diff File

master 7c118084

05.03.2021 05:31

greebo


Details Diff
Fix stage unit test now that the parser is recognising the VFP stage with fragment maps
mod - test/Materials.cpp Diff File

master 727ac4f2

05.03.2021 05:25

greebo


Details Diff
Compilation fixes, getMaterialForName => getMaterial
mod - radiant/ui/materials/MaterialEditor.cpp Diff File
mod - test/Materials.cpp Diff File

master f7311ea6

05.03.2021 05:21

greebo


Details Diff
Merge branch 'materialeditor', to base the upcoming changes on the latest main branch

# Conflicts:
# include/ShaderLayer.h
# include/ishaders.h
# radiant/ui/mediabrowser/MediaBrowserTreeView.cpp
# radiantcore/shaders/CShader.h
# test/Materials.cpp
# tools/msvc/DarkRadiant.vcxproj.filters
# tools/msvc/DarkRadiantCore.vcxproj.filters
mod - include/ShaderLayer.h Diff File
mod - include/ishaderexpression.h Diff File
mod - include/ishaders.h Diff File
mod - include/precompiled_interfaces.h Diff File
add - install/bitmaps/soundmap.png Diff File
add - install/bitmaps/soundmap_wave.png Diff File
add - install/bitmaps/videomap.png Diff File
add - install/ui/materialeditor.fbp Diff File
add - install/ui/materialeditor.xrc Diff File
add - libs/materials/ParseLib.h Diff File
mod - libs/wxutil/SourceView.cpp Diff File
mod - libs/wxutil/dataview/ResourceTreeView.cpp Diff File
mod - radiant/CMakeLists.txt Diff File
add - radiant/ui/common/MaterialPopulator.cpp Diff File
add - radiant/ui/common/MaterialPopulator.h Diff File
add - radiant/ui/common/MaterialTreeView.cpp Diff File
add - radiant/ui/common/MaterialTreeView.h Diff File
add - radiant/ui/materials/Binding.h Diff File
add - radiant/ui/materials/ExpressionBinding.h Diff File
add - radiant/ui/materials/MaterialEditor.cpp Diff File
add - radiant/ui/materials/MaterialEditor.h Diff File
add - radiant/ui/materials/MaterialEditorModule.cpp Diff File
mod - radiant/ui/mediabrowser/MediaBrowserTreeView.cpp Diff File
mod - radiant/ui/mediabrowser/MediaBrowserTreeView.h Diff File
mod - radiantcore/imagefile/ImageLoader.cpp Diff File
mod - radiantcore/shaders/CShader.cpp Diff File
mod - radiantcore/shaders/CShader.h Diff File
mod - radiantcore/shaders/CameraCubeMapDecl.cpp Diff File
mod - radiantcore/shaders/CameraCubeMapDecl.h Diff File
mod - radiantcore/shaders/Doom3ShaderLayer.cpp Diff File
mod - radiantcore/shaders/Doom3ShaderLayer.h Diff File
mod - radiantcore/shaders/MapExpression.cpp Diff File
mod - radiantcore/shaders/MapExpression.h Diff File
mod - radiantcore/shaders/ShaderExpression.cpp Diff File
mod - radiantcore/shaders/ShaderExpression.h Diff File
mod - radiantcore/shaders/ShaderTemplate.cpp Diff File
mod - radiantcore/shaders/ShaderTemplate.h Diff File
add - radiantcore/shaders/SoundMapExpression.h Diff File
add - radiantcore/shaders/VideoMapExpression.h Diff File
mod - test/Materials.cpp Diff File
add - test/resources/tdm/materials/parsertest.mtr Diff File
mod - tools/msvc/DarkRadiant.vcxproj Diff File
mod - tools/msvc/DarkRadiant.vcxproj.filters Diff File
mod - tools/msvc/DarkRadiantCore.vcxproj Diff File
mod - tools/msvc/DarkRadiantCore.vcxproj.filters Diff File
mod - tools/msvc/libs.vcxproj Diff File
mod - tools/msvc/libs.vcxproj.filters Diff File

master 70a0e7fd

05.03.2021 04:39

greebo


Details Diff
Adjust post build event to load the AUI binaries to the install location.
mod - tools/msvc/post_build_event.cmd Diff File
mod - tools/msvc/post_build_event_x64.cmd Diff File

master afca9c48

05.03.2021 04:34

greebo


Details Diff
Introduce a MaterialManager::createDefaultMaterial method to create the internal materials for use in shaders like the entity colour shaders.
This partially reverts the commit e52ceae, mainly to keep the Material interface abstract, and also to separate the material-related business from the OpenGLShader code.
mod - include/ishaders.h Diff File
mod - radiantcore/rendersystem/backend/OpenGLShader.cpp Diff File
mod - radiantcore/shaders/CShader.cpp Diff File
mod - radiantcore/shaders/CShader.h Diff File
mod - radiantcore/shaders/Doom3ShaderSystem.cpp Diff File
mod - radiantcore/shaders/Doom3ShaderSystem.h Diff File
mod - radiantcore/shaders/ShaderLibrary.cpp Diff File
mod - radiantcore/shaders/ShaderLibrary.h Diff File
mod - test/Materials.cpp Diff File

master 78ed0907

05.03.2021 04:12

greebo


Details Diff
Remove nonexistent file from include.vcxproj
mod - tools/msvc/include.vcxproj Diff File
 First  Prev  1 2 3 ... 30 ... 60 ... 90 ... 120 ... 150 151 152 153 154 155 156 157 ... 180 ... 210 ... 240 ... 261 262 263  Next  Last