summaryrefslogtreecommitdiff
path: root/src/model_builder.py
blob: fd611baeb8adf8e8c9f1d5cd7f9131644d29c645 (plain)
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
import os
import copy
import importlib
from generate_configuration import *

ENGINE = 'solid'
# ENGINE = 'cadquery'

base = shape_config

configurations = [
    {
        'config_name': '4x5_OLED_CtrlTray',
        'save_dir': '4x5_OLED_CtrlTray',
        'nrows': 4,  # key rows
        'ncols': 5,  # key columns
        'oled_mount_type': 'CLIP',
        'controller_mount_type': 'EXTERNAL',
    },
    {
        'config_name': '4x6_OLED_CtrlTray',
        'save_dir': '4x6_OLED_CtrlTray',
        'nrows': 4,  # key rows
        'ncols': 6,  # key columns
        'oled_mount_type':  'CLIP',
        'controller_mount_type': 'EXTERNAL',
    },
    {
        'config_name': '5x6_OLED_CtrlTray',
        'save_dir': '5x6_OLED_CtrlTray',
        'nrows': 5,  # key rows
        'ncols': 6,  # key columns
        'oled_mount_type': 'CLIP',
        'controller_mount_type': 'EXTERNAL',
    },
    {
        'config_name': '6x6_OLED_CtrlTray',
        'save_dir': '6x6_OLED_CtrlTray',
        'nrows': 6,  # key rows
        'ncols': 6,  # key columns
        'oled_mount_type': 'CLIP',
        'controller_mount_type': 'EXTERNAL',
    },
    {
        'config_name': '4x5_CtrlTray',
        'save_dir': '4x5_CtrlTray',
        'nrows': 4,  # key rows
        'ncols': 5,  # key columns
        'oled_mount_type': None,
        'controller_mount_type': 'EXTERNAL',
    },
    {
        'config_name': '4x6_CtrlTray',
        'save_dir': '4x6_CtrlTray',
        'nrows': 4,  # key rows
        'ncols': 6,  # key columns
        'oled_mount_type': None,
        'controller_mount_type': 'EXTERNAL',
    },
    {
        'config_name': '5x6_CtrlTray',
        'save_dir': '5x6_CtrlTray',
        'nrows': 5,  # key rows
        'ncols': 6,  # key columns
        'oled_mount_type': None,
        'controller_mount_type': 'EXTERNAL',
    },
    {
        'config_name': '6x6_CtrlTray',
        'save_dir': '6x6_CtrlTray',
        'nrows': 6,  # key rows
        'ncols': 6,  # key columns
        'oled_mount_type': 'CLIP',
        'controller_mount_type': 'EXTERNAL',
    },
    {
        'config_name': '4x5_Basic',
        'save_dir': '4x5_Basic',
        'nrows': 4,  # key rows
        'ncols': 5,  # key columns
        'oled_mount_type': None,
        'controller_mount_type': 'EXTERNAL',
    },
    {
        'config_name': '4x6_Basic',
        'save_dir': '4x6_Basic',
        'nrows': 4,  # key rows
        'ncols': 6,  # key columns
        'oled_mount_type': None,
        'controller_mount_type': 'RJ9_USB_WALL',
    },
    {
        'config_name': '5x6_Basic',
        'save_dir': '5x6_Basic',
        'nrows': 5,  # key rows
        'ncols': 6,  # key columns
        'oled_mount_type': None,
        'controller_mount_type': 'RJ9_USB_WALL',
    },
    {
        'config_name': '6x6_Basic',
        'save_dir': '6x6_Basic',
        'nrows': 6,  # key rows
        'ncols': 6,  # key columns
        'oled_mount_type': None,
        'controller_mount_type': 'RJ9_USB_WALL',
    }
]

init = True

for config in configurations:
    shape_config = copy.deepcopy(base)
    for item in config:
        shape_config[item] = config[item]


    with open('run_config.json', mode='w') as fid:
        json.dump(shape_config, fid, indent=4)

        if init:
            import dactyl_manuform as dactyl_manuform
        else:
            importlib.reload(dactyl_manuform)

    init = False