Added vim fold marks

This commit is contained in:
Shy 2017-04-23 21:23:58 +02:00
parent aade5737fd
commit b71a53816c

View file

@ -39,7 +39,7 @@ import sys
from random import choice # For client_id generation. from random import choice # For client_id generation.
class C4Interface(): class C4Interface: # {{{1
""" Interaction with AutoC4, the C4 home automation system. """ """ Interaction with AutoC4, the C4 home automation system. """
broker = "autoc4.labor.koeln.ccc.de" broker = "autoc4.labor.koeln.ccc.de"
@ -198,9 +198,9 @@ class C4Interface():
else: else:
payload = b'\x00' payload = b'\x00'
self.push(payload, topic="club/shutdown", retain=False) self.push(payload, topic="club/shutdown", retain=False)
# }}}1
class Kitchenlight: # {{{1
class Kitchenlight:
""" Interface to the Kitchenlight and its functions. """ """ Interface to the Kitchenlight and its functions. """
_END = "little" # Kitchenlight endianess. _END = "little" # Kitchenlight endianess.
@ -417,9 +417,9 @@ class Kitchenlight:
# Screen 11 # Screen 11
d = int(11).to_bytes(4, self._END) d = int(11).to_bytes(4, self._END)
self._switch(d) self._switch(d)
# }}}1
class Dmx: # {{{1
class Dmx:
""" Abstraction of the 3 channel LED cans in the club. """ """ Abstraction of the 3 channel LED cans in the club. """
# 3 bytes for color, one each for red, green and blue. # 3 bytes for color, one each for red, green and blue.
@ -462,24 +462,24 @@ class Dmx:
self.color = color self.color = color
self.payload = bytearray.fromhex(color) self.payload = bytearray.fromhex(color)
# }}}1
class Dmx4(Dmx): # {{{1
class Dmx4(Dmx):
""" Abstraction of the 4 channel LED cans in the club. """ """ Abstraction of the 4 channel LED cans in the club. """
# 3 bytes for color plus 1 byte for brightness. # 3 bytes for color plus 1 byte for brightness.
template = "000000ff" template = "000000ff"
# }}}1
class Dmx7(Dmx): # {{{1
class Dmx7(Dmx):
""" Abstraction of the 7 channel LED cans in the club. """ """ Abstraction of the 7 channel LED cans in the club. """
# 3 bytes for color, another 3 bytes for special functions and 1 byte # 3 bytes for color, another 3 bytes for special functions and 1 byte
# for brightness. # for brightness.
template = "000000000000ff" template = "000000000000ff"
# }}}1
class C4Room: # {{{1
class C4Room:
""" Methods of rooms in the club. """ """ Methods of rooms in the club. """
def __init__(self): def __init__(self):
@ -681,9 +681,9 @@ class C4Room:
return self.c4.push(command, retain=False) return self.c4.push(command, retain=False)
else: else:
return self.c4.push(command) return self.c4.push(command)
# }}}1
class Wohnzimmer(C4Room): # {{{1
class Wohnzimmer(C4Room):
""" Description of the Wohnzimmer. """ """ Description of the Wohnzimmer. """
name = "Wohnzimmer" name = "Wohnzimmer"
@ -706,9 +706,9 @@ class Wohnzimmer(C4Room):
Dmx7("dmx/wohnzimmer/baellebad"), Dmx7("dmx/wohnzimmer/baellebad"),
Dmx("led/kitchen/sink") Dmx("led/kitchen/sink")
) )
# }}}1
class Plenarsaal(C4Room): # {{{1
class Plenarsaal(C4Room):
""" Description of the Plenarsaal. """ """ Description of the Plenarsaal. """
name = "Plenarsaal" name = "Plenarsaal"
@ -729,9 +729,9 @@ class Plenarsaal(C4Room):
Dmx7("dmx/plenar/hinten3"), Dmx7("dmx/plenar/hinten3"),
Dmx7("dmx/plenar/hinten4") Dmx7("dmx/plenar/hinten4")
) )
# }}}1
class Fnordcenter(C4Room): # {{{1
class Fnordcenter(C4Room):
""" Description of the Fnordcenter. """ """ Description of the Fnordcenter. """
name = "Fnordcenter" name = "Fnordcenter"
@ -747,9 +747,9 @@ class Fnordcenter(C4Room):
Dmx4("dmx/fnord/fairyfenster"), Dmx4("dmx/fnord/fairyfenster"),
Dmx4("dmx/fnord/schrankrechts") Dmx4("dmx/fnord/schrankrechts")
) )
# }}}1
class Keller(C4Room): # {{{1
class Keller(C4Room):
""" Description of the Keller. """ """ Description of the Keller. """
name = "Keller" name = "Keller"
@ -760,9 +760,9 @@ class Keller(C4Room):
) )
master = None master = None
lights = () lights = ()
# }}}1
class ColorScheme: # {{{1
class ColorScheme:
""" Abstraction of a colorscheme. """ """ Abstraction of a colorscheme. """
# Names of virtual presets. These are always listed as available and the # Names of virtual presets. These are always listed as available and the
@ -1027,9 +1027,9 @@ is reserved. Please choose a different one.".format(name))
if name != '-': if name != '-':
fd.close() fd.close()
print("Wrote preset \"{}\"".format(name)) print("Wrote preset \"{}\"".format(name))
# }}}1
class RemotePresets: # {{{1
class RemotePresets:
""" Remote preset control. """ """ Remote preset control. """
def __init__(self): def __init__(self):
@ -1202,9 +1202,9 @@ class RemotePresets:
c4 = C4Interface() c4 = C4Interface()
return c4.push(cmd) return c4.push(cmd)
# }}}1
if __name__ == "__main__": # {{{1
if __name__ == "__main__":
import argparse import argparse
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
@ -1360,4 +1360,5 @@ if __name__ == "__main__":
# No or no useful command line options? # No or no useful command line options?
if len(sys.argv) <= 1 or len(sys.argv) == 2 and args.debug: if len(sys.argv) <= 1 or len(sys.argv) == 2 and args.debug:
parser.print_help() parser.print_help()
# }}}1