axmol/tests/cpp-tests/Source/MaterialSystemTest/MaterialSystemTest.h

138 lines
3.8 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2015-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2019-11-23 20:27:39 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#pragma once
#include "../BaseTest.h"
#include "renderer/backend/Types.h"
#include "renderer/backend/ProgramState.h"
#include <vector>
DEFINE_TEST_SUITE(MaterialSystemTest);
class MaterialSystemBaseTest : public TestCase
{
public:
virtual std::string title() const override;
};
class Material_MeshRendererTest : public MaterialSystemBaseTest
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(Material_MeshRendererTest);
2019-11-23 20:27:39 +08:00
virtual void onEnter() override;
virtual std::string subtitle() const override;
};
class Material_MultipleMeshRenderer : public MaterialSystemBaseTest
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(Material_MultipleMeshRenderer);
2019-11-23 20:27:39 +08:00
virtual void onEnter() override;
virtual std::string subtitle() const override;
};
class Material_2DEffects : public MaterialSystemBaseTest
{
public:
CREATE_FUNC(Material_2DEffects);
virtual void onEnter() override;
virtual std::string subtitle() const override;
void updateCCTimeUniforms(float);
2019-11-23 20:27:39 +08:00
private:
struct Locations
{
2022-10-18 19:17:36 +08:00
Locations(ax::backend::ProgramState* ps, ax::backend::UniformLocation loc)
: programState(ps), location(loc)
{}
2022-10-18 19:17:36 +08:00
ax::backend::ProgramState* programState = nullptr;
ax::backend::UniformLocation location;
2019-11-23 20:27:39 +08:00
};
std::vector<Locations> timeUniforms;
};
class EffectAutoBindingResolver;
class Material_AutoBindings : public MaterialSystemBaseTest
{
public:
CREATE_FUNC(Material_AutoBindings);
Material_AutoBindings();
virtual ~Material_AutoBindings();
virtual void onEnter() override;
virtual std::string subtitle() const override;
void updateUniformTime(float);
private:
2022-10-18 19:17:36 +08:00
ax::backend::UniformLocation _locationTime;
EffectAutoBindingResolver* _resolver = nullptr;
2022-10-18 19:17:36 +08:00
ax::backend::ProgramState* _noiseProgramState = nullptr;
2019-11-23 20:27:39 +08:00
};
class Material_setTechnique : public MaterialSystemBaseTest
{
public:
CREATE_FUNC(Material_setTechnique);
virtual void onEnter() override;
virtual std::string subtitle() const override;
private:
void changeMaterial(float dt);
2022-10-18 19:17:36 +08:00
ax::MeshRenderer* _mesh;
2019-11-23 20:27:39 +08:00
int _techniqueState;
};
class Material_clone : public MaterialSystemBaseTest
{
public:
CREATE_FUNC(Material_clone);
virtual void onEnter() override;
virtual std::string subtitle() const override;
};
class Material_parsePerformance : public MaterialSystemBaseTest
{
public:
CREATE_FUNC(Material_parsePerformance);
virtual void onEnter() override;
virtual std::string subtitle() const override;
void parsingTesting(unsigned int count);
2019-11-23 20:27:39 +08:00
protected:
unsigned int _maxParsingCoumt;
};