I am currently working on creating a paint program using python and pygame. I am currently having trouble with creating the undo/redo function in the program. The way I was thinking of doing so would be to save the canvas image after each time the user releases the mouse, but I am not sure if the individual images would have to be saved in a temporary folder that is deleted after the program is closed. I have also read that this method can affect performance of the program so I am wondering if there are any other methods that will work more efficiently. Thank you.
Paint Program in Python - Undo and Redo
1.1k Views Asked by user2950875 At
2
There are 2 best solutions below
0
Bartlomiej Lewandowski
On
My suggestion is to have a buffer of the last operations that have been done. Each operation will consist of a sprite, and a position of where it is placed.
You will be drawing the canvas, as well as all sprites from that buffer. When you have to many sprites in the buffer, you can blit the oldest onto the canvas, thus saving memory.
The undo itself would be rather easy. Just remove the last sprite that was added.
A redo would be slightly more difficult. Since instead of removing, I would have a pointer, that points to the last sprite that I will draw. If a new action will be added, only then I remove all the sprites that have been "invisible".
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in PYGAME
- pygame levels organisation and running functions one at a time
- Countdown timer in Pygame
- Python(Pygame) Key Error
- pygame.draw.circle, still draws a square
- executables = executables python error (trying to turn pygame into executable with cx_freeze)
- Using Pygame's pixArray to draw a square
- pygame error: Tuple has no attribute get_size()
- python pygame - how to create a drag and drop with multiple images?
- Python - Pickle init takes 4 arguments - 1 given
- Pygame wont play background music when loading game
- PyGame Installation Mac OS X
- How to make the object move during a while infinite loop?
- Error using sprite module in python 3.1
- How to present numpy array into pygame surface?
- Error with inheritance in python
Related Questions in PAINT
- When is Datagridview's Paint and Cellpainting called?
- try to combine all line of texts which have different format in one bitmap
- Making Standard Dial Range on JFreeChart thicker
- Draw things after board is drawn with paint (JPanel) (java)
- Java Paint and JButton
- how to override the paint method without stopping its functionality
- Various paint objects in Activity
- Clear Transparent Background for QWidget
- Android SurfaceView: textsize changing in Paint is not smooth
- The method paint(Graphics g) of JComponent does not see the field
- Use keyListener to update paint().
- Android Canvas focus in selected area
- Carousel slider with description below changing
- Java swing Button is invisible after revalidate() until clicked
- Python Recursion Function Causes Pygame to Freeze
Related Questions in UNDO
- vbnet 2008 forms.designer.vb undo bug
- What's special about an ampersand in an NSUndoManager action name?
- Detecting ctrl+z (and other control combos) in paper.js
- Why doesn't JavaFX include an undo facility
- Reset the undo stack in ACE editor
- How to use QT-Undo framework in constructor
- How to undo a line stroke ios
- Incomplete undo on local context with Entity Framework
- Change the text in a TextBox with Text = "{Binding SomeText}" so it is undoable
- Find innodb undo size
- How to programmatically execute undo and redo in CKEDITOR, and reset their stacks?
- How can I adapt this reused-storage undo stack pattern from a generic vector to a typed model?
- Why can't VBA module actions be reversed? i.e., Ctrl+Z'ed
- How do I restore git commit history
- Function to revert mysql statement
Related Questions in REDO
- jetty replay request on timeout
- C++ - back to start of loop without checking the condition
- How to programmatically execute undo and redo in CKEDITOR, and reset their stacks?
- why do DBMS use redo log?
- Redo log Oracle and commit
- Implementing Undo and Redo functionality javascript and php
- Paint Program in Python - Undo and Redo
- Need a hint on undo, redo functionalities on many datasets in a database
- I tried editor.trigger('myapp','undo') but it's not working as expected
- Implementing undo and redo with pygame and lambdas
- Java - netbeans - Undo / Redo Code for a notepadGUI
- Undo and Redo Button in Kivy with Canvas
- How to join DBA_HIST_* tables with V$LOGMNR_CONTENTS table - Oracle DB
- triggering redo after undo
- How to #rewind the internal position under #each?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
writing a copy to file does sound a bit heavy handed, does it need to be unlimited undo? I would suggest using something like pythons collections.deque as a circular buffer to save the last N modifications, this would save you having to worry about cleanup and disk storage. If taking full snapshots each time turns out to be to much performance wise you may need to look into limiting eached saved region to a specific bounding box based on whatever that last action was that the user performed.