-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmouth.py
96 lines (76 loc) · 2.99 KB
/
mouth.py
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
# Speak.activity
# A simple front end to the espeak text-to-speech engine on the XO laptop
# http://wiki.laptop.org/go/Speak
#
# Copyright (C) 2008 Joshua Minor
# This file is part of Speak.activity
#
# Parts of Speak.activity are based on code from Measure.activity
# Copyright (C) 2007 Arjun Sarwal - arjun@laptop.org
#
# Speak.activity 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.
#
# Speak.activity 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 Speak.activity. If not, see <http://www.gnu.org/licenses/>.
# This code is a super-stripped down version of the waveform view from Measure
import cairo
from gi.repository import Gtk
from sugar3.graphics import style
class Mouth(Gtk.DrawingArea):
def __init__(self, audio, fill_color):
Gtk.DrawingArea.__init__(self)
self.set_size_request(-1, style.GRID_CELL_SIZE * 4)
self.fill_color = fill_color
self.audio = audio
self.connect("draw", self.draw_cb)
def stop(self):
self.audio.disconnect_all()
self.audio = None
def draw_cb(self, widget, cr):
return True
class PeakMouth(Mouth):
def __init__(self, audio, fill_color):
Mouth.__init__(self, audio, fill_color)
audio.connect_peak(self.__peak_cb)
audio.connect_idle(self.__idle_cb)
self.volume = 0
def __peak_cb(self, me, volume):
self.volume = volume
self.queue_draw()
def __idle_cb(self, me):
self.volume = 0
self.queue_draw()
def draw_cb(self, widget, cr):
bounds = self.get_allocation()
# disable antialiasing
cr.set_antialias(cairo.ANTIALIAS_NONE)
# background
cr.set_source_rgba(*self.fill_color.get_rgba())
cr.rectangle(0, 0, bounds.width, bounds.height)
cr.fill()
# draw the mouth
volume = self.volume / 30000.
mouthH = volume * bounds.height
mouthW = volume ** 2 * (bounds.width / 2.) + bounds.width / 2.
# T
# L R
# B
Lx, Ly = bounds.width // 2 - mouthW // 2, bounds.height // 2
Tx, Ty = bounds.width // 2, bounds.height // 2 - mouthH // 2
Rx, Ry = bounds.width // 2 + mouthW // 2, bounds.height // 2
Bx, By = bounds.width // 2, bounds.height // 2 + mouthH // 2
cr.set_line_width(min(bounds.height / 10.0, 10))
cr.move_to(Lx, Ly)
cr.curve_to(Tx, Ty, Tx, Ty, Rx, Ry)
cr.curve_to(Bx, By, Bx, By, Lx, Ly)
cr.set_source_rgb(0, 0, 0)
cr.close_path()
cr.stroke()