roar/liboperators/OperatorFlipVertical.py

32 lines
838 B
Python

#!/usr/bin/env python3
#
# OperatorFlipVertical.py
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
#
from Operator import Operator
class OperatorFlipVertical(Operator):
name = "Flip"
flipPairs = {
"(":")", ")":"(",
"/":"\\", "\\":"/",
"\[":"]", "]":"\[",
"\{":"\}", "\}":"\{",
"<":">", ">":"<",
"`":"'",
}
def apply(self, region):
for numRow in range(len(region)):
region[numRow].reverse()
for numCol in range(len(region[numRow])):
if region[numRow][numCol][3] in self.flipPairs:
region[numRow][numCol][3] = self.flipPairs[region[numRow][numCol][3]]
return region
def __init__(self, *args):
pass
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120