mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
upgrade to v2.0.8
This commit is contained in:
parent
f25e311f6e
commit
f7141d5967
@ -3,7 +3,7 @@ output: .retype
|
|||||||
url: https://pocketpy.dev
|
url: https://pocketpy.dev
|
||||||
branding:
|
branding:
|
||||||
title: pocketpy
|
title: pocketpy
|
||||||
label: v2.0.7
|
label: v2.0.8
|
||||||
logo: "./static/logo.png"
|
logo: "./static/logo.png"
|
||||||
favicon: "./static/logo.png"
|
favicon: "./static/logo.png"
|
||||||
meta:
|
meta:
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
// clang-format off
|
// clang-format off
|
||||||
|
|
||||||
#define PK_VERSION "2.0.7"
|
#define PK_VERSION "2.0.8"
|
||||||
#define PK_VERSION_MAJOR 2
|
#define PK_VERSION_MAJOR 2
|
||||||
#define PK_VERSION_MINOR 0
|
#define PK_VERSION_MINOR 0
|
||||||
#define PK_VERSION_PATCH 7
|
#define PK_VERSION_PATCH 8
|
||||||
|
|
||||||
/*************** feature settings ***************/
|
/*************** feature settings ***************/
|
||||||
|
|
||||||
|
@ -166,6 +166,42 @@ class PocketpyBindings {
|
|||||||
ffi.Pointer<ffi.Char> Function(
|
ffi.Pointer<ffi.Char> Function(
|
||||||
ffi.Pointer<py_Frame>, ffi.Pointer<ffi.Int>)>();
|
ffi.Pointer<py_Frame>, ffi.Pointer<ffi.Int>)>();
|
||||||
|
|
||||||
|
/// Python equivalent to `globals()` with respect to the given frame.
|
||||||
|
void py_Frame_newglobals(
|
||||||
|
ffi.Pointer<py_Frame> frame,
|
||||||
|
py_OutRef out,
|
||||||
|
) {
|
||||||
|
return _py_Frame_newglobals(
|
||||||
|
frame,
|
||||||
|
out,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
late final _py_Frame_newglobalsPtr = _lookup<
|
||||||
|
ffi
|
||||||
|
.NativeFunction<ffi.Void Function(ffi.Pointer<py_Frame>, py_OutRef)>>(
|
||||||
|
'py_Frame_newglobals');
|
||||||
|
late final _py_Frame_newglobals = _py_Frame_newglobalsPtr
|
||||||
|
.asFunction<void Function(ffi.Pointer<py_Frame>, py_OutRef)>();
|
||||||
|
|
||||||
|
/// Python equivalent to `locals()` with respect to the given frame.
|
||||||
|
void py_Frame_newlocals(
|
||||||
|
ffi.Pointer<py_Frame> frame,
|
||||||
|
py_OutRef out,
|
||||||
|
) {
|
||||||
|
return _py_Frame_newlocals(
|
||||||
|
frame,
|
||||||
|
out,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
late final _py_Frame_newlocalsPtr = _lookup<
|
||||||
|
ffi
|
||||||
|
.NativeFunction<ffi.Void Function(ffi.Pointer<py_Frame>, py_OutRef)>>(
|
||||||
|
'py_Frame_newlocals');
|
||||||
|
late final _py_Frame_newlocals = _py_Frame_newlocalsPtr
|
||||||
|
.asFunction<void Function(ffi.Pointer<py_Frame>, py_OutRef)>();
|
||||||
|
|
||||||
/// Get the function object of the frame.
|
/// Get the function object of the frame.
|
||||||
/// Returns `NULL` if not available.
|
/// Returns `NULL` if not available.
|
||||||
py_StackRef py_Frame_function(
|
py_StackRef py_Frame_function(
|
||||||
@ -2225,7 +2261,7 @@ class PocketpyBindings {
|
|||||||
/// Call a function.
|
/// Call a function.
|
||||||
/// It prepares the stack and then performs a `vectorcall(argc, 0, false)`.
|
/// It prepares the stack and then performs a `vectorcall(argc, 0, false)`.
|
||||||
/// The result will be set to `py_retval()`.
|
/// The result will be set to `py_retval()`.
|
||||||
/// The stack remains unchanged after the operation.
|
/// The stack remains unchanged if successful.
|
||||||
bool py_call(
|
bool py_call(
|
||||||
py_Ref f,
|
py_Ref f,
|
||||||
int argc,
|
int argc,
|
||||||
@ -2306,16 +2342,19 @@ class PocketpyBindings {
|
|||||||
/// Python equivalent to `json.dumps(val)`.
|
/// Python equivalent to `json.dumps(val)`.
|
||||||
bool py_json_dumps(
|
bool py_json_dumps(
|
||||||
py_Ref val,
|
py_Ref val,
|
||||||
|
int indent,
|
||||||
) {
|
) {
|
||||||
return _py_json_dumps(
|
return _py_json_dumps(
|
||||||
val,
|
val,
|
||||||
|
indent,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
late final _py_json_dumpsPtr =
|
late final _py_json_dumpsPtr =
|
||||||
_lookup<ffi.NativeFunction<ffi.Bool Function(py_Ref)>>('py_json_dumps');
|
_lookup<ffi.NativeFunction<ffi.Bool Function(py_Ref, ffi.Int)>>(
|
||||||
|
'py_json_dumps');
|
||||||
late final _py_json_dumps =
|
late final _py_json_dumps =
|
||||||
_py_json_dumpsPtr.asFunction<bool Function(py_Ref)>();
|
_py_json_dumpsPtr.asFunction<bool Function(py_Ref, int)>();
|
||||||
|
|
||||||
/// Python equivalent to `json.loads(val)`.
|
/// Python equivalent to `json.loads(val)`.
|
||||||
bool py_json_loads(
|
bool py_json_loads(
|
||||||
@ -3106,15 +3145,15 @@ abstract class py_CompileMode {
|
|||||||
typedef py_TraceFunc = ffi.Pointer<
|
typedef py_TraceFunc = ffi.Pointer<
|
||||||
ffi.NativeFunction<ffi.Void Function(ffi.Pointer<py_Frame>, ffi.Int32)>>;
|
ffi.NativeFunction<ffi.Void Function(ffi.Pointer<py_Frame>, ffi.Int32)>>;
|
||||||
|
|
||||||
|
/// An output reference for returning a value.
|
||||||
|
typedef py_OutRef = ffi.Pointer<py_TValue>;
|
||||||
|
|
||||||
/// A specific location in the value stack of the VM.
|
/// A specific location in the value stack of the VM.
|
||||||
typedef py_StackRef = ffi.Pointer<py_TValue>;
|
typedef py_StackRef = ffi.Pointer<py_TValue>;
|
||||||
|
|
||||||
/// A generic reference to a python object.
|
/// A generic reference to a python object.
|
||||||
typedef py_Ref = ffi.Pointer<py_TValue>;
|
typedef py_Ref = ffi.Pointer<py_TValue>;
|
||||||
|
|
||||||
/// An output reference for returning a value.
|
|
||||||
typedef py_OutRef = ffi.Pointer<py_TValue>;
|
|
||||||
|
|
||||||
/// A global reference which has the same lifespan as the VM.
|
/// A global reference which has the same lifespan as the VM.
|
||||||
typedef py_GlobalRef = ffi.Pointer<py_TValue>;
|
typedef py_GlobalRef = ffi.Pointer<py_TValue>;
|
||||||
|
|
||||||
@ -3329,13 +3368,13 @@ abstract class py_PredefinedType {
|
|||||||
static const int tp_chunked_array2d = 62;
|
static const int tp_chunked_array2d = 62;
|
||||||
}
|
}
|
||||||
|
|
||||||
const String PK_VERSION = '2.0.7';
|
const String PK_VERSION = '2.0.8';
|
||||||
|
|
||||||
const int PK_VERSION_MAJOR = 2;
|
const int PK_VERSION_MAJOR = 2;
|
||||||
|
|
||||||
const int PK_VERSION_MINOR = 0;
|
const int PK_VERSION_MINOR = 0;
|
||||||
|
|
||||||
const int PK_VERSION_PATCH = 7;
|
const int PK_VERSION_PATCH = 8;
|
||||||
|
|
||||||
const int PK_LOW_MEMORY_MODE = 0;
|
const int PK_LOW_MEMORY_MODE = 0;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: pocketpy
|
name: pocketpy
|
||||||
description: A lightweight Python interpreter for game engines. It supports Android/iOS/Windows/Linux/MacOS.
|
description: A lightweight Python interpreter for game engines. It supports Android/iOS/Windows/Linux/MacOS.
|
||||||
version: 2.0.7
|
version: 2.0.8
|
||||||
homepage: https://pocketpy.dev
|
homepage: https://pocketpy.dev
|
||||||
repository: https://github.com/pocketpy/pocketpy
|
repository: https://github.com/pocketpy/pocketpy
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user