-
-
Notifications
You must be signed in to change notification settings - Fork 903
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
view: refine fallback mechanism (with non-regression lib tests)
- Loading branch information
Showing
7 changed files
with
56 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
#include <cr.h> | ||
#include "../types.h" | ||
|
||
CR_EXPORT int cr_main(cr_plugin *ctx, cr_op operation) { | ||
// TODO | ||
switch(operation) { | ||
case CR_STEP: { | ||
// unset filter fallback should not be accessible across boundaries | ||
auto &view = *static_cast<view_type *>(ctx->userdata); | ||
ctx->userdata = view.storage<1u>(); | ||
} break; | ||
case CR_CLOSE: | ||
case CR_LOAD: | ||
case CR_UNLOAD: | ||
// nothing to do here, this is only a test. | ||
break; | ||
} | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
#include <entt/core/attribute.h> | ||
#include "../types.h" | ||
|
||
ENTT_API void do_nothing() {} | ||
ENTT_API const void *filter(const view_type &view) { | ||
// forces the creation of all symbols for the view type | ||
view_type other{}; | ||
|
||
// unset filter fallback should not be accessible across boundaries | ||
return view.storage<1u>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
#include <gtest/gtest.h> | ||
#include <entt/core/attribute.h> | ||
#include "../types.h" | ||
|
||
ENTT_API void do_nothing(); | ||
ENTT_API const void *filter(const view_type &); | ||
|
||
TEST(Lib, View) { | ||
do_nothing(); | ||
// TODO | ||
view_type view{}; | ||
const void *storage = filter(view); | ||
|
||
ASSERT_EQ(storage, nullptr); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef ENTT_LIB_VIEW_TYPE_H | ||
#define ENTT_LIB_VIEW_TYPE_H | ||
|
||
#include <entt/entity/storage.hpp> | ||
#include <entt/entity/view.hpp> | ||
#include "../../../common/empty.h" | ||
|
||
using view_type = entt::basic_view<entt::get_t<entt::storage<test::empty>>, entt::exclude_t<entt::storage<test::empty>>>; | ||
|
||
#endif |