官术网_书友最值得收藏!

The number of units and beats per unit features

We earlier coded the matrix called create_right_button_matrix, which creates a two-dimensional matrix with the number of rows equal to MAX_NUMBER_OF_DRUM_SAMPLES. The number of columns would be decided by multiplying the number of units by the beats per unit values selected by the end user. Its formula can be given as follows:

Number of columns of buttons = Number of units x BPU

This means that every time the user changes the number of units or the beats per unit, the button matrix should be redrawn to change the number of columns. This change should also be reflected in our underlying data structure. Let's add this feature to our drum machine.

We had earlier defined two dummy methods—on_number_of_units_changed() and on_bpu_changed(). We modify them now as follows (see code 3.04.py):

def on_number_of_units_changed(self):
self.set_number_of_units()
self.set_is_button_clicked_list(MAX_NUMBER_OF_DRUM_SAMPLES,
self.find_number_of_columns())
self.create_right_button_matrix()

def on_bpu_changed(self):
self.set_bpu()
self.set_is_button_clicked_list(MAX_NUMBER_OF_DRUM_SAMPLES,
self.find_number_of_columns())
self.create_right_button_matrix()

The preceding methods do two things:

  • Modify the data structure to reflect the changes in BPU or number of units
  • Call the create_right_button_matrix() method to recreate the button matrix

Now if you go and run the code (see code 3.04.py) and change either the values of number of units or BPU, the button matrix should redraw itself to reflect the change.

主站蜘蛛池模板: 阜南县| 吉木乃县| 黑山县| 平度市| 信丰县| 德清县| 农安县| 久治县| 从化市| 南阳市| 盱眙县| 牟定县| 滕州市| 丰原市| 锦屏县| 玉环县| 荥经县| 翁牛特旗| 襄城县| 山东省| 彝良县| 高淳县| 蕲春县| 岚皋县| 杂多县| 龙胜| 容城县| 河东区| 达尔| 昌黎县| 本溪| 米泉市| 潼关县| 鹤山市| 托克托县| 疏勒县| 上犹县| 五寨县| 清苑县| 阳新县| 娱乐|