blueloveTH 2 سال پیش
والد
کامیت
1a8139f42b
2فایلهای تغییر یافته به همراه92 افزوده شده و 2 حذف شده
  1. 1 1
      docs/quick-start/05_bind.md
  2. 91 1
      docs/quick-start/06_wrap.md

+ 1 - 1
docs/quick-start/05_bind.md

@@ -43,7 +43,7 @@ vm->bind_builtin_func<0>("input", [](VM* vm, ArgsView args){
 
 //                        vvv function name
 vm->bind_builtin_func<2>("add", [](VM* vm, ArgsView args){
-    //                ^ argument count
+//                    ^ argument count
 	i64 lhs = CAST(i64, args[0]);
     i64 rhs = CAST(i64, args[1]);
     return VAR(lhs + rhs);

+ 91 - 1
docs/quick-start/06_wrap.md

@@ -4,4 +4,94 @@ label: 'Wrap a native struct'
 order: 50
 ---
 
-Wrapping a `struct` as `PyObject`
+Add `PY_CLASS` macro into your `struct` and implement a static function `_register`.
+
+```cpp
+PY_CLASS(T, mod, name)
+```
+
+## Example
+
+```cpp
+#include "pocketpy.h"
+
+using namespace pkpy;
+
+struct Vector2 {
+    PY_CLASS(Vector2, test, Vector2)
+    float x;
+    float y;
+
+    Vector2(float x, float y) : x(x), y(y) {}
+
+    static void _register(VM* vm, PyObject* mod, PyObject* type){
+        vm->bind_static_method<2>(type, "__new__", [](VM* vm, ArgsView args){
+            float x = vm->num_to_float(args[0]);
+            float y = vm->num_to_float(args[1]);
+            return VAR_T(Vector2, x, y);
+        });
+
+        vm->bind_method<0>(type, "__repr__", [](VM* vm, ArgsView args){
+            Vector2& self = CAST(Vector2&, args[0]);
+            std::stringstream ss;
+            ss << "Vector2(" << self.x << ", " << self.y << ")";
+            return VAR(ss.str());
+        });
+
+        vm->bind_method<1>(type, "__add__", [](VM* vm, ArgsView args){
+            Vector2& self = CAST(Vector2&, args[0]);
+            Vector2& other = CAST(Vector2&, args[1]);
+            return VAR_T(Vector2, self.x + other.x, self.y + other.y);
+        });
+
+        vm->bind_method<1>(type, "__sub__", [](VM* vm, ArgsView args){
+            Vector2& self = CAST(Vector2&, args[0]);
+            Vector2& other = CAST(Vector2&, args[1]);
+            return VAR_T(Vector2, self.x - other.x, self.y - other.y);
+        });
+
+        vm->bind_method<1>(type, "__mul__", [](VM* vm, ArgsView args){
+            Vector2& self = CAST(Vector2&, args[0]);
+            f64 other = vm->num_to_float(args[1]);
+            return VAR_T(Vector2, self.x * other, self.y * other);
+        });
+
+        vm->bind_method<1>(type, "__truediv__", [](VM* vm, ArgsView args){
+            Vector2& self = CAST(Vector2&, args[0]);
+            f64 other = vm->num_to_float(args[1]);
+            return VAR_T(Vector2, self.x / other, self.y / other);
+        });
+
+        vm->bind_method<1>(type, "__eq__", [](VM* vm, ArgsView args){
+            Vector2& self = CAST(Vector2&, args[0]);
+            Vector2& other = CAST(Vector2&, args[1]);
+            return VAR(self.x == other.x && self.y == other.y);
+        });
+
+        vm->bind_method<1>(type, "__ne__", [](VM* vm, ArgsView args){
+            Vector2& self = CAST(Vector2&, args[0]);
+            Vector2& other = CAST(Vector2&, args[1]);
+            return VAR(self.x != other.x || self.y != other.y);
+        });
+    }
+};
+
+int main(){
+    VM* vm = new VM(true);
+    // create a new module `test`
+    PyObject* mod = vm->new_module("test");
+    // register `Vector2` to `test` module
+    Vector2::register_class(vm, mod);
+    return 0;
+}
+```
+
+## Usage
+
+```python
+from test import Vector2
+
+a = Vector2(1.0, 2.0)
+b = Vector2(-1.0, -2.0)
+print(a + b)    # Vector2(0.0, 0.0)
+```