File: __init__.py

package info (click to toggle)
songwrite 3-0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 6,584 kB
  • sloc: python: 9,162; xml: 1,369; makefile: 9
file content (160 lines) | stat: -rw-r--r-- 7,221 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# -*- coding: utf-8 -*-

# Songwrite 3
# Copyright (C) 2008 Jean-Baptiste LAMY -- jibalamy@free.fr
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import editobj3, editobj3.introsp as introsp, editobj3.field as field
import songwrite3.model   as model
import songwrite3.plugins as plugins

class FingeringView(model.View):
  view_class               = "fingering"
  default_instrument       = 72
  default_icon_filename    = "flute.png"
  
  def __init__(self, partition, name = ""):
    model.View.__init__(self, partition, name)
    if not hasattr(partition, "print_with_staff_too"): partition.print_with_staff_too = 0
    
  def get_drawer(self, canvas, compact = False):
    from songwrite3.plugins.fingering.drawer import FingeringDrawer, SingleString
    return FingeringDrawer(canvas, self.partition, compact, SingleString)

  def get_type(self):
    return self.__class__
  
  def note_2_fingering(self, note):
    v = abs(note.value)
    if getattr(self.partition, "g8", 0): v += 12
    return self.fingerings.get(v)
  

class TinWhistleView(FingeringView):
  default_instrument    = 72
  default_icon_filename = "flute_irlandaise.png"
  fingerings = {
    #note : (hole1, hole2, hole3, hole4, hole5, hole6,   breath),
    62 : (1  , 1  , 1  , None, 1  , 1  , 1  ,     ""),
    63 : (1  , 1  , 1  , None, 1  , 1  , 0.5,     ""),
    64 : (1  , 1  , 1  , None, 1  , 1  , 0  ,     ""),
    65 : (1  , 1  , 1  , None, 1  , 0.5, 0  ,     ""),
    66 : (1  , 1  , 1  , None, 1  , 0  , 0  ,     ""),
    67 : (1  , 1  , 1  , None, 0  , 0  , 0  ,     ""),
    68 : (1  , 1  , 0.5, None, 0  , 0  , 0  ,     ""),
    69 : (1  , 1  , 0  , None, 0  , 0  , 0  ,     ""),
    70 : (1  , 0.5, 0  , None, 0  , 0  , 0  ,     ""),
    71 : (1  , 0  , 0  , None, 0  , 0  , 0  ,     ""),
    72 : (0  , 1  , 1  , None, 1  , 0  , 1  ,     ""),
    73 : (0  , 0  , 0  , None, 0  , 0  , 0  ,     ""),
    
    74 : (0  , 1  , 1  , None, 1  , 1  , 1  ,     "+"),
    75 : (1  , 1  , 1  , None, 1  , 1  , 0.5,     "+"),
    76 : (1  , 1  , 1  , None, 1  , 1  , 0  ,     "+"),
    77 : (1  , 1  , 1  , None, 1  , 0.5, 0  ,     "+"),
    78 : (1  , 1  , 1  , None, 1  , 0  , 0  ,     "+"),
    79 : (1  , 1  , 1  , None, 0  , 0  , 0  ,     "+"),
    80 : (1  , 1  , 0.5, None, 0  , 0  , 0  ,     "+"),
    81 : (1  , 1  , 0  , None, 0  , 0  , 0  ,     "+"),
    82 : (1  , 0.5, 0  , None, 0  , 0  , 0  ,     "+"),
    83 : (1  , 0  , 0  , None, 0  , 0  , 0  ,     "+"),
    85 : (0  , 0  , 0  , None, 0  , 0  , 0  ,     "+"),
    }
  
  def __init__(self, partition, name = ""):
    if not hasattr(partition, "instrument_tonality"):
      partition.instrument_tonality = "D"
      if not partition.notes: partition.tonality = "D"
    FingeringView.__init__(self, partition, name or _("Tin whistle"))
    
  def get_icon_filename(self): return "flute_irlandaise.png"
  
  def note_2_fingering(self, note):
    v = abs(note.value)
    if getattr(self.partition, "g8", 0): v += 12
    return self.fingerings.get(v - model.OFFSETS[self.partition.instrument_tonality] + 2)
  
  def get_bell_note(self):
    bell_note = 62 + model.OFFSETS[self.partition.instrument_tonality] - 2
    if self.partition.g8: bell_note -= 12
    return bell_note
  
  def get_drawer(self, canvas, compact = False):
    from songwrite3.plugins.fingering.drawer import FingeringDrawer, TinWhistleSingleString
    return FingeringDrawer(canvas, self.partition, compact, TinWhistleSingleString)
  
  def __xml__(self, xml = None, context = None):
    xml.write(u'''\t\t<view type="tin_whistle"/>\n''')
    
    
class RecorderView(FingeringView):
  default_instrument = 73
  fingerings = {
    #note : (hole1, hole2, hole3, hole4, hole5, hole6,   breath),
    60 : (1  , None, 1  , 1  , 1  , None, 1  , 1  , (1, 1), (1, 1),    ""),
    61 : (1  , None, 1  , 1  , 1  , None, 1  , 1  , (1, 1), (1, 0),    ""),
    62 : (1  , None, 1  , 1  , 1  , None, 1  , 1  , (1, 1), (0, 0),    ""),
    63 : (1  , None, 1  , 1  , 1  , None, 1  , 1  , (1, 0), (0, 0),    ""),
    64 : (1  , None, 1  , 1  , 1  , None, 1  , 1  , (0, 0), (0, 0),    ""),
    65 : (1  , None, 1  , 1  , 1  , None, 1  , 0  , (1, 1), (1, 1),    ""),
    66 : (1  , None, 1  , 1  , 1  , None, 0  , 1  , (1, 1), (0, 0),    ""),
    67 : (1  , None, 1  , 1  , 1  , None, 0  , 0  , (0, 0), (0, 0),    ""),
    68 : (1  , None, 1  , 1  , 0  , None, 1  , 1  , (0, 0), (0, 0),    ""),
    69 : (1  , None, 1  , 1  , 0  , None, 0  , 0  , (0, 0), (0, 0),    ""),
    70 : (1  , None, 1  , 0  , 1  , None, 1  , 0  , (0, 0), (0, 0),    ""),
    71 : (1  , None, 1  , 0  , 0  , None, 0  , 0  , (0, 0), (0, 0),    ""),
    
    72 : (1  , None, 0  , 1  , 0  , None, 0  , 0  , (0, 0), (0, 0),    ""),
    73 : (0  , None, 1  , 1  , 0  , None, 0  , 0  , (0, 0), (0, 0),    ""),
    74 : (0  , None, 0  , 1  , 0  , None, 0  , 0  , (0, 0), (0, 0),    ""),
    75 : (0  , None, 1  , 1  , 1  , None, 1  , 1  , (1, 1), (1, 1),    ""),
    76 : (0.5, None, 1  , 1  , 1  , None, 1  , 1  , (0, 0), (0, 0),    ""),
    77 : (0.5, None, 1  , 1  , 1  , None, 1  , 0  , (1, 1), (0, 0),    ""),
    78 : (0.5, None, 1  , 1  , 1  , None, 0  , 1  , (0, 0), (0, 0),    ""),
    79 : (0.5, None, 1  , 1  , 1  , None, 0  , 0  , (0, 0), (0, 0),    ""),
    80 : (0.5, None, 1  , 1  , 0  , None, 1  , 0  , (0, 0), (0, 0),    ""),
    81 : (0.5, None, 1  , 1  , 0  , None, 0  , 0  , (0, 0), (0, 0),    ""),
    82 : (0.5, None, 1  , 1  , 0  , None, 1  , 1  , (1, 1), (0, 0),    ""),
    83 : (0.5, None, 1  , 1  , 0  , None, 1  , 1  , (0, 0), (0, 0),    ""),
    
    84 : (0.5, None, 1  , 0  , 0  , None, 1  , 1  , (0, 0), (0, 0),    ""),
    85 : (0.5, None, 1  , 0  , 1  , None, 1  , 0  , (0, 0), (0, 0),    ""),
    86 : (0.5, None, 1  , 0  , 1  , None, 1  , 0  , (1, 1), (0, 0),    ""),
    87 : (0.5, None, 0  , 1  , 1  , None, 0  , 1  , (1, 1), (0, 0),    ""),
    }
  
  def __init__(self, partition, name = ""):
    FingeringView.__init__(self, partition, name or _("Recorder"))
    
  def get_icon_filename(self): return "flute.png"
  
  def get_bell_note(self):
    bell_note = 60
    if self.partition.g8: bell_note -= 12
    return bell_note
  
  
  def __xml__(self, xml = None, context = None):
    xml.write(u'''\t\t<view type="recorder"/>''')
    
  
model.VIEW_CATEGORIES.append("fingering")
plugins.ViewPlugin(TinWhistleView, None, "tin_whistle", "fingering")
plugins.ViewPlugin(RecorderView  , None, "recorder"   , "fingering")

#descr = introsp.description(model.Partition)
#descr.set_field_for_attr("instrument_tonality"  , field.EnumField(dict([(_("tonality_%s" % tonality), tonality) for tonality in model.TONALITIES.keys()])))