Difference between revisions of "Summer of Code/2013/Turtle Blocks Python export project"
< Summer of Code | 2013
Jump to navigation
Jump to search
Marion Zepf (talk | contribs) (update decisions; move deferred ones to new Deferred section) |
Marion Zepf (talk | contribs) (update schedule) |
||
Line 14: | Line 14: | ||
* July 1 – July 21 (3 weeks): Implement the first transformations from blocks to Python code. Only cover the following blocks from the 'Turtle' palette: 'forward', 'back', 'setxy', 'left', and 'right'. Make sure the exported code imports the correct modules from Turtle Blocks and can be run on the command line (or in Pippy). Keep the implementation modular, so more blocks can be added easily. | * July 1 – July 21 (3 weeks): Implement the first transformations from blocks to Python code. Only cover the following blocks from the 'Turtle' palette: 'forward', 'back', 'setxy', 'left', and 'right'. Make sure the exported code imports the correct modules from Turtle Blocks and can be run on the command line (or in Pippy). Keep the implementation modular, so more blocks can be added easily. | ||
** July 1 – July 5 (1 week): Test the two Python code generators for suitability for my project. Develop a concept of how the blocks know what Python code they will be transformed into. | ** July 1 – July 5 (1 week): Test the two Python code generators for suitability for my project. Develop a concept of how the blocks know what Python code they will be transformed into. | ||
− | ** July 6 – July 12 (1 week): Replace previous implementation of primitives (the backend of the blocks) with a class whose instances can be called to execute the block, or be transformed to a Python AST (class <code>Primitive</code>). Use the class in TA and make sure calling instances works. | + | ** July 6 – July 12 (1 week): Replace previous implementation of primitives (the backend of the blocks) with a class whose instances can be called to execute the block, or be transformed to a Python AST (class <code>Primitive</code>). Use the class in TA and make sure calling instances works. Add <code>Primitive</code> objects for the first five blocks and the 'repeat' block. |
− | ** July 13 – July 21 (1 week): Work on transforming <code>Primitive</code> objects to Python ASTs. | + | ** July 13 – July 21 (1 week): Work on transforming <code>Primitive</code> objects to Python ASTs. Implement special handling for loop blocks when transforming them to ASTs. The sample program basics-square.ta can now be exported to python code. |
− | * July 22 – July 28 (1 week): | + | * July 22 – July 28 (1 week): Introduce constant arguments to <code>Primitive</code> objects. Add a <code>Primitive</code> object for the 'forever' block. |
− | * | + | * July 29 – August 2: The exported Python code now uses TurtleArt's internal execution engine. This makes infinite loops executable and enables the user to watch the program run. Add a <code>Primitive</code> object for the 'clean' block. Implement nice error handling when exporting a project and when running the exported code. |
+ | * Midterm evaluation: Block programs can be exported to Python code that can be run outside of Turtle Blocks. The export functionality is limited to a few blocks (those that have a <code>Primitive</code> object), but it can easily be extended to cover the rest. | ||
+ | |||
* August 3 – September 15 (6 weeks): Implement transformations of all other blocks to Python code: | * August 3 – September 15 (6 weeks): Implement transformations of all other blocks to Python code: | ||
** August 3 – August 11 (1 week) | ** August 3 – August 11 (1 week) | ||
+ | *** The complete 'Pen' palette | ||
+ | *** Boolean operations from the 'Numeric operators' palette | ||
+ | *** The rest of the loops from the 'Flow operators' palette | ||
+ | *** Conditionals from the 'Flow operators' palette | ||
+ | ** August 12 – August 18 (1 week) | ||
+ | *** The complete 'Pen colors' palette | ||
*** Numeric operations from the 'Numeric operators' palette and screen dimensions from the 'Presentation templates' palette<ref name="requires-add-imports" group="note" /> | *** Numeric operations from the 'Numeric operators' palette and screen dimensions from the 'Presentation templates' palette<ref name="requires-add-imports" group="note" /> | ||
− | + | *** Variables from the 'Action stacks' palette | |
− | + | *** Action stacks (functions) from the 'Action stacks' palette | |
− | *** Variables from the 'Action stacks | ||
− | *** | ||
** August 19 – August 25 (1 week) | ** August 19 – August 25 (1 week) | ||
+ | *** Heaps from the 'Extra options' palette | ||
*** Runtime control (e.g., exit, suspension) from the 'Flow operators' palette | *** Runtime control (e.g., exit, suspension) from the 'Flow operators' palette | ||
*** External functions (chr, int, mathematical function, tamyblock.py) from the 'Extra options' palette<ref name="requires-add-imports" group="note" /> | *** External functions (chr, int, mathematical function, tamyblock.py) from the 'Extra options' palette<ref name="requires-add-imports" group="note" /> |
Revision as of 15:14, 2 August 2013
This page tracks the progress of Marion Zepf's GSoC project, "Turtle Blocks Python export." An abstract and a motivational statement can be found on the project proposal page, along with other details.
The mentors for this project are Walter Bender and Claudia Urrea.
Repositories
I develop my project in a branch called gsoc-python-export on Gitorious. Design documents, sample code, etc. go into ta-python-export-dev on GitHub.
Timeline
The following timeline will be modified as the project evolves.
- June 17 – June 30 (2 weeks): Determine what code needs to be shared by Turtle Blocks and the exported code. Restructure the modules to isolate this part, so it can easily be imported. Only cover the modules that are necessary to run blocks from the 'Turtle', 'Pen', and 'Pen colors' palettes. Deal with the other modules when implementing the corresponding blocks.
- July 1 – July 21 (3 weeks): Implement the first transformations from blocks to Python code. Only cover the following blocks from the 'Turtle' palette: 'forward', 'back', 'setxy', 'left', and 'right'. Make sure the exported code imports the correct modules from Turtle Blocks and can be run on the command line (or in Pippy). Keep the implementation modular, so more blocks can be added easily.
- July 1 – July 5 (1 week): Test the two Python code generators for suitability for my project. Develop a concept of how the blocks know what Python code they will be transformed into.
- July 6 – July 12 (1 week): Replace previous implementation of primitives (the backend of the blocks) with a class whose instances can be called to execute the block, or be transformed to a Python AST (class
Primitive
). Use the class in TA and make sure calling instances works. AddPrimitive
objects for the first five blocks and the 'repeat' block. - July 13 – July 21 (1 week): Work on transforming
Primitive
objects to Python ASTs. Implement special handling for loop blocks when transforming them to ASTs. The sample program basics-square.ta can now be exported to python code.
- July 22 – July 28 (1 week): Introduce constant arguments to
Primitive
objects. Add aPrimitive
object for the 'forever' block. - July 29 – August 2: The exported Python code now uses TurtleArt's internal execution engine. This makes infinite loops executable and enables the user to watch the program run. Add a
Primitive
object for the 'clean' block. Implement nice error handling when exporting a project and when running the exported code. - Midterm evaluation: Block programs can be exported to Python code that can be run outside of Turtle Blocks. The export functionality is limited to a few blocks (those that have a
Primitive
object), but it can easily be extended to cover the rest.
- August 3 – September 15 (6 weeks): Implement transformations of all other blocks to Python code:
- August 3 – August 11 (1 week)
- The complete 'Pen' palette
- Boolean operations from the 'Numeric operators' palette
- The rest of the loops from the 'Flow operators' palette
- Conditionals from the 'Flow operators' palette
- August 12 – August 18 (1 week)
- The complete 'Pen colors' palette
- Numeric operations from the 'Numeric operators' palette and screen dimensions from the 'Presentation templates' palette[note 1]
- Variables from the 'Action stacks' palette
- Action stacks (functions) from the 'Action stacks' palette
- August 19 – August 25 (1 week)
- Heaps from the 'Extra options' palette
- Runtime control (e.g., exit, suspension) from the 'Flow operators' palette
- External functions (chr, int, mathematical function, tamyblock.py) from the 'Extra options' palette[note 1]
- August 26 – September 1 (1 week)
- Comments from the 'Extra options' palette: This is especially difficult because Python's
ast
module does not support comments natively.
- Comments from the 'Extra options' palette: This is especially difficult because Python's
- September 2 – September 8 (1 week)
- September 9 – September 15 (1 week)
- August 3 – August 11 (1 week)
- September 16 – September 23 (1 week): Test exporting different kinds of blocks in combination. Fix the last bugs. Clean up.
Notes
Decisions
This section lists important design decisions.
- The generated Python code will setup a window without menus and palettes. It will only be a plain canvas. Turtles will be visible with their (default or custom) sprites because this is the only way to make sprites move in TA.
- Code in named stacks will be put into functions with the same name. Blocks appended to the 'start' block will be put into a function called
start()
. Unnamed stacks will also be put into extra functions with auto-generated names (e.g.,unnamed_stack_1()
). - Run only the block stack that has a 'start' block at the top. If there is no 'start' block, notify the user, but don't execute unnamed stacks. (TA itself should show the same behavior.)
- Assume the generated code will be run in GNOME, but keep the
running_sugar
flag, so it can be ported to Sugar later. - The path to the TA installation must be in the environment variable
PYTHONPATH
. - Boxes and actions are stored in a dictionary in order to allow for arbitrary names (e.g., names that start with a number or names that are read from the content of a box).
- All blocks (including the ones introduced by plugins) reference a
Primitive
object, which can be called to execute the block in TA, or transformed into a Python AST.- Type conversion and other modification of the arguments of a block is done by slot wrappers. A slot wrapper is a
Primitive
that is attached to the argument of anotherPrimitive
. Slot wrappers are called/ transformed before thePrimitive
itself.
- Type conversion and other modification of the arguments of a block is done by slot wrappers. A slot wrapper is a
Pending
The following design issues have yet to be decided:
Deferred
The following design issues have not yet been decided, but are being deferred due to their low priority:
- Enable the user to control the speed of execution (e.g., by setting a global
step_time
)?- How to implement this? E.g., call a
wait(step_time)
function in between two steps?
- How to implement this? E.g., call a
- Should the status bar be shown when the exported code is run?