Mercurial > fife-parpg
diff tools/editor/scripts/tests/undotest.py @ 378:64738befdf3b
bringing in the changes from the build_system_rework branch in preparation for the 0.3.0 release. This commit will require the Jan2010 devkit. Clients will also need to be modified to the new way to import fife.
author | vtchill@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Mon, 11 Jan 2010 23:34:52 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/editor/scripts/tests/undotest.py Mon Jan 11 23:34:52 2010 +0000 @@ -0,0 +1,136 @@ +# -*- coding: utf-8 -*- + +# #################################################################### +# Copyright (C) 2005-2009 by the FIFE team +# http://www.fifengine.de +# This file is part of FIFE. +# +# FIFE is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# #################################################################### + +import scripts.undomanager as undomanager + +print "Testing undomanager:" +umanager = undomanager.UndoManager(branchedMode=False) + +print "--- Testing basic undo/redo ---" + +print "Adding 3 actions:" +def undoPrint(msg): + print msg +def newAction(nr): + undo = lambda: undoPrint("Undo: "+str(nr)) + redo = lambda: undoPrint("Redo: "+str(nr)) + return undomanager.UndoObject(undo, redo, "Name: "+str(nr), "Description: "+str(nr)) + + +umanager.addAction(newAction("1")) +umanager.addAction(newAction("2")) +umanager.addAction(newAction("3")) + +print "Undoing 3 actions:" +umanager.undo(3); + +print "Redoing 3 actions, individually:" +umanager.redo() +umanager.redo() +umanager.redo() + +print "--- Testing undogroups ---" +print "10 actions, 2 undogroups nested within 1 undogroup" +umanager.startGroup("ActionGroup 1", "Desc: AG1") +umanager.addAction(newAction("1")) +umanager.addAction(newAction("2")) +umanager.addAction(newAction("3")) +umanager.startGroup("ActionGroup 2", "AG2") +umanager.addAction(newAction("4")) +umanager.addAction(newAction("5")) +umanager.addAction(newAction("6")) +umanager.endGroup() +umanager.startGroup("ActionGroup 2", "AG2") +umanager.addAction(newAction("7")) +umanager.addAction(newAction("8")) +umanager.addAction(newAction("9")) +umanager.addAction(newAction("10")) +umanager.endGroup() +umanager.endGroup() + +print "Undoing group:" +umanager.undo() + +print "Redo" +umanager.redo() + +print "--- Testing branches (without branch mode) ---" +print "Branch mode:", umanager.getBranchMode() + +print "Setting up actions" +umanager.addAction(newAction("1-1")) +umanager.addAction(newAction("1-2")) +umanager.addAction(newAction("1-3")) +umanager.undo(3) +umanager.addAction(newAction("2-1")) +umanager.addAction(newAction("2-2")) +umanager.addAction(newAction("2-3")) +umanager.undo(3) +umanager.addAction(newAction("3-1")) +umanager.addAction(newAction("3-2")) +umanager.addAction(newAction("3-3")) +umanager.undo(3) +print "Branches", umanager.getBranches() +print "Next branch" +umanager.nextBranch() +umanager.redo(3) +umanager.undo(3) +print "Prev branch" +umanager.previousBranch() +umanager.redo(3) + +print "--- Testing branches (with branch mode) ---" +print "Activating branch mode:" +umanager.setBranchMode(True) +print "Branch mode:", umanager.getBranchMode() + +print "Setting up actions" +umanager.addAction(newAction("1-1")) +umanager.addAction(newAction("1-2")) +umanager.addAction(newAction("1-3")) +umanager.undo(3) +umanager.addAction(newAction("2-1")) +umanager.addAction(newAction("2-2")) +umanager.addAction(newAction("2-3")) +umanager.undo(3) +umanager.addAction(newAction("3-1")) +umanager.addAction(newAction("3-2")) +umanager.addAction(newAction("3-3")) +umanager.undo(3) +print "Branches", umanager.getBranches() +print "Next branch" +umanager.nextBranch() +umanager.redo(3) +umanager.undo(3) +print "Prev branch" +umanager.previousBranch() +umanager.redo(3) + +import gc +print "--- Testing clear() function ---" +print "Checking garbage:", gc.collect(), "Uncollectable:", len(gc.garbage) +print "Clearing history" +umanager.clear() +print "Checking garbage:", gc.collect(), "Uncollectable:", len(gc.garbage) + +print "--- Done ---" \ No newline at end of file