-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(reflect): add @cpp1_rule_of_zero
#808
Conversation
c4e00a0
to
ab047cc
Compare
Here's some use cases. To name the idiom "rule of zero".
To write wrappers that behave like the wrapped types. |
This is the diff on my use case Diffdiff --git a/sources/waarudo/sfml/sfml.cpp2 b/sources/waarudo/sfml/sfml.cpp2
index 007d3b0..9a462d3 100644
--- a/sources/waarudo/sfml/sfml.cpp2
+++ b/sources/waarudo/sfml/sfml.cpp2
@@ -31,27 +31,21 @@ sfml: namespace = {
set_position: (inout this, point: jegp::ui::window_point<float>) = derived(this).setPosition(point.to_sfml());
}
- export sprite: type = {
+ export sprite: @rule_of_zero type = {
this: sf::Sprite;
this: transformable<sprite> = ();
- operator=: (out this, that) = { }
operator=: (out this, texture: sf::Texture) = sf::Sprite = (texture);
operator=: (out this, texture: sf::Texture, rectangle: jegp::ui::window_rectangle<i32>) = //
sf::Sprite = (texture, rectangle.to_sfml());
}
- export rectangle_shape: type = {
+ export rectangle_shape: @rule_of_zero type = {
this: sf::RectangleShape = ();
this: transformable<rectangle_shape> = ();
- operator=: (out this, size: jegp::ui::magnitude_t<float>) = sf::RectangleShape = (size.to_sfml());
-
operator=: (out this) = { }
- operator=: (out this, that) = { }
- operator=: (out this, move that) = { }
- operator=: (inout this, that) = { }
- operator=: (inout this, move that) = { }
+ operator=: (out this, size: jegp::ui::magnitude_t<float>) = sf::RectangleShape = (size.to_sfml());
}
render_target: @struct <Derived> type = {
@@ -82,17 +76,12 @@ sfml: namespace = {
get_size: (this) -> jegp::ui::magnitude_t<i32> = sf::Vector2i(getSize()).from_sfml();
}
- export vertex: type = {
+ export vertex: @rule_of_zero type = {
this: sf::Vertex = ();
+ operator=: (out this) = { }
operator=: (out this, position: jegp::ui::window_point<float>, texture_position: canvas_point<float>) = //
sf::Vertex = (position.to_sfml(), texture_position.to_sfml());
-
- operator=: (out this) = { }
- operator=: (out this, that) = { }
- operator=: (out this, move that) = { }
- operator=: (inout this, that) = { }
- operator=: (inout this, move that) = { }
}
export vertex_ptr: @basic_value <Const: bool> type = {
@@ -112,9 +101,10 @@ sfml: namespace = {
export vertices_in_triangle :== 3;
- export vertex_array: type = {
+ export vertex_array: @rule_of_zero type = {
this: sf::VertexArray = ();
+ operator=: (out this) = { }
operator=: (out this, type: sf::PrimitiveType, vertices: std::ptrdiff_t) = sf::VertexArray =
(type, vertices as std::size_t);
@@ -122,24 +112,13 @@ sfml: namespace = {
vertex_array(sf::PrimitiveType::Triangles, size * vertices_in_triangle);
get_bounds: (this) -> jegp::ui::window_rectangle<float> = getBounds().from_sfml();
-
- operator=: (out this) = { }
- operator=: (out this, that) = { }
- operator=: (out this, move that) = { }
- operator=: (inout this, that) = { }
- operator=: (inout this, move that) = { }
}
- export view: type = {
+ export view: @rule_of_zero type = {
this: sf::View = ();
- operator=: (out this, zone_to_display: scene_rectangle<float>) = sf::View = to_sfml(zone_to_display);
-
operator=: (out this) = { }
- operator=: (out this, that) = { }
- operator=: (out this, move that) = { }
- operator=: (inout this, that) = { }
- operator=: (inout this, move that) = { }
+ operator=: (out this, zone_to_display: scene_rectangle<float>) = sf::View = to_sfml(zone_to_display);
}
to_sfml: <O, Number> (shape: jegp::ui::rectangle<O, Number>) -> sf::Rect<Number> =
|
Nice. Does this need a minor rebase, and generation of |
Done. |
This is about how to lower to Cpp1 code and let the Cpp1 defaults (the Cpp1 compiler-implemented type metafunction) take over Cpp2 already embraces rule-of-zero in a different way/meaning, by having everything be opt-in all the time... if you write absolutely nothing, all you get is a default ctor and dtor
Looks ready to merge... just one last question about naming: I renamed the function to But apart from that naming question this is ready to merge, just let me know what you think of the name... thanks again. |
Yeah, The commit with the rename reverted the changes to |
@rule_of_zero
@cpp1_rule_of_zero
Thanks! I'll regenerate |
Resolves #665.
Testing summary:
Acknowledgements: