[python] add bgcolor to turtule module (#367)

* add bgcolor to turtul module

* add bgcolor to toolbox and a minor fix

* ok is ok now i hope however

* Submodule Omega-Kawaii-Theme remove
This commit is contained in:
cartoone222
2024-06-09 09:01:17 +02:00
committed by GitHub
parent 3b22656d4f
commit ff54918502
16 changed files with 76 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ void modturtle_view_did_disappear() {
mp_obj_t modturtle___init__() {
sTurtle = Turtle();
sTurtle.drawBg();
/* Note: we don't even bother writing a destructor for Turtle because this
* init function is called once, and only once, per MicroPython init cycle.
* When the previous Turtle object is destroyed, its VM is long gone. */
@@ -165,6 +166,38 @@ mp_obj_t modturtle_pencolor(size_t n_args, const mp_obj_t *args) {
return mp_const_none;
}
mp_obj_t modturtle_bgcolor(size_t n_args, const mp_obj_t *args) {
if (n_args == 0) {
// bgcolor()
KDColor c = sTurtle.colorBg();
mp_obj_t mp_col[3];
if(sTurtle.colorMode() == MicroPython::Color::Mode::MaxIntensity255){
mp_col[0] = mp_obj_new_int_from_uint(c.red());
mp_col[1] = mp_obj_new_int_from_uint(c.green());
mp_col[2] = mp_obj_new_int_from_uint(c.blue());
} else {
mp_col[0] = mp_obj_new_float(uint8tColorToDouble(c.red()));
mp_col[1] = mp_obj_new_float(uint8tColorToDouble(c.green()));
mp_col[2] = mp_obj_new_float(uint8tColorToDouble(c.blue()));
}
return mp_obj_new_tuple(3, mp_col);
}
if (n_args == 2) {
mp_raise_TypeError("bgcolor() takes 0, 1 or 3 arguments");
return mp_const_none;
}
mp_obj_t color;
if (n_args == 1) {
color = args[0];
} else {
assert(n_args == 3);
color = mp_obj_new_tuple(n_args, args);
}
sTurtle.setColorBg(MicroPython::Color::Parse(color, sTurtle.colorMode()));
sTurtle.drawBg();
return mp_const_none;
}
mp_obj_t modturtle_colormode(size_t n_args, const mp_obj_t *args) {
if(n_args == 0){
return mp_obj_new_int_from_uint(static_cast<int>(sTurtle.colorMode()));