94c681171b7d92e386dab3850b9c4865b687713a
[OpenColorIO-Configs.git] / aces_1.0.0 / python / aces_ocio / generate_config.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 Defines objects creating the *ACES* configuration.
6 """
7
8 from __future__ import division
9
10 import copy
11 import os
12 import shutil
13 import sys
14
15 import PyOpenColorIO as ocio
16 from aces_ocio.colorspaces import aces
17 from aces_ocio.colorspaces import arri
18 from aces_ocio.colorspaces import canon
19 from aces_ocio.colorspaces import general
20 from aces_ocio.colorspaces import gopro
21 from aces_ocio.colorspaces import panasonic
22 from aces_ocio.colorspaces import red
23 from aces_ocio.colorspaces import sony
24 from aces_ocio.process import Process
25
26 from aces_ocio.utilities import (
27     ColorSpace,
28     colorspace_prefixed_name,
29     compact,
30     replace,
31     unpack_default)
32
33 __author__ = 'ACES Developers'
34 __copyright__ = 'Copyright (C) 2014 - 2015 - ACES Developers'
35 __license__ = ''
36 __maintainer__ = 'ACES Developers'
37 __email__ = 'aces@oscars.org'
38 __status__ = 'Production'
39
40 __all__ = ['ACES_OCIO_CTL_DIRECTORY_ENVIRON',
41            'ACES_OCIO_CONFIGURATION_DIRECTORY_ENVIRON',
42            'set_config_roles',
43            'create_ocio_transform',
44            'add_colorspace_aliases',
45            'add_look',
46            'add_looks_to_views',
47            'create_config',
48            'create_config_data',
49            'write_config',
50            'generate_baked_LUTs',
51            'generate_config_directory',
52            'generate_config',
53            'main']
54
55 ACES_OCIO_CTL_DIRECTORY_ENVIRON = 'ACES_OCIO_CTL_DIRECTORY'
56 ACES_OCIO_CONFIGURATION_DIRECTORY_ENVIRON = 'ACES_OCIO_CONFIGURATION_DIRECTORY'
57
58
59 def set_config_roles(config,
60                      color_picking=None,
61                      color_timing=None,
62                      compositing_log=None,
63                      data=None,
64                      default=None,
65                      matte_paint=None,
66                      reference=None,
67                      scene_linear=None,
68                      texture_paint=None,
69                      rendering=None,
70                      compositing_linear=None):
71     """
72     Sets given *OCIO* configuration roles to the config.
73     Parameters
74     ----------
75     config : Config
76         *OCIO* configuration.
77     color_picking : str or unicode, optional
78         Color picking role title.
79     color_timing : str or unicode, optional
80         Color timing role title.
81     compositing_log : str or unicode, optional
82         Compositing log role title.
83     data : str or unicode, optional
84         Data role title.
85     default : str or unicode, optional
86         Default role title.
87     matte_paint : str or unicode, optional
88         Matte painting role title.
89     reference : str or unicode, optional
90         Reference role title.
91     scene_linear : str or unicode, optional
92         Scene linear role title.
93     texture_paint : str or unicode, optional
94         Texture painting role title.
95     Returns
96     -------
97     bool
98          Definition success.
99     """
100
101     if color_picking is not None:
102         config.setRole(ocio.Constants.ROLE_COLOR_PICKING, color_picking)
103     if color_timing is not None:
104         config.setRole(ocio.Constants.ROLE_COLOR_TIMING, color_timing)
105     if compositing_log is not None:
106         config.setRole(ocio.Constants.ROLE_COMPOSITING_LOG, compositing_log)
107     if data is not None:
108         config.setRole(ocio.Constants.ROLE_DATA, data)
109     if default is not None:
110         config.setRole(ocio.Constants.ROLE_DEFAULT, default)
111     if matte_paint is not None:
112         config.setRole(ocio.Constants.ROLE_MATTE_PAINT, matte_paint)
113     if reference is not None:
114         config.setRole(ocio.Constants.ROLE_REFERENCE, reference)
115     if texture_paint is not None:
116         config.setRole(ocio.Constants.ROLE_TEXTURE_PAINT, texture_paint)
117
118     # *rendering* and *compositing_linear* roles default to the *scene_linear*
119     # value if not set explicitly.
120     if rendering is not None:
121         config.setRole('rendering', rendering)
122     if compositing_linear is not None:
123         config.setRole('compositing_linear', compositing_linear)
124     if scene_linear is not None:
125         config.setRole(ocio.Constants.ROLE_SCENE_LINEAR, scene_linear)
126         if rendering is None:
127             config.setRole('rendering', scene_linear)
128         if compositing_linear is None:
129             config.setRole('compositing_linear', scene_linear)
130
131     return True
132
133
134 def create_ocio_transform(transforms):
135     """
136     Returns an *OCIO* transform from given array of transform descriptions.
137
138     Parameters
139     ----------
140     transforms : array_like
141         Transform descriptions as an array_like of dicts:
142         {'type', 'src', 'dst', 'direction'}
143
144     Returns
145     -------
146     Transform
147          *OCIO* transform.
148     """
149
150     direction_options = {
151         'forward': ocio.Constants.TRANSFORM_DIR_FORWARD,
152         'inverse': ocio.Constants.TRANSFORM_DIR_INVERSE}
153
154     ocio_transforms = []
155
156     for transform in transforms:
157
158         # *lutFile* transform
159         if transform['type'] == 'lutFile':
160             ocio_transform = ocio.FileTransform()
161
162             if 'path' in transform:
163                 ocio_transform.setSrc(transform['path'])
164
165             if 'cccid' in transform:
166                 ocio_transform.setCCCId(transform['cccid'])
167
168             if 'interpolation' in transform:
169                 ocio_transform.setInterpolation(transform['interpolation'])
170             else:
171                 ocio_transform.setInterpolation(ocio.Constants.INTERP_BEST)
172
173             if 'direction' in transform:
174                 ocio_transform.setDirection(
175                     direction_options[transform['direction']])
176
177             ocio_transforms.append(ocio_transform)
178
179         # *matrix* transform
180         elif transform['type'] == 'matrix':
181             ocio_transform = ocio.MatrixTransform()
182             # `MatrixTransform` member variables can't be initialized directly,
183             # each must be set individually.
184             ocio_transform.setMatrix(transform['matrix'])
185
186             if 'offset' in transform:
187                 ocio_transform.setOffset(transform['offset'])
188
189             if 'direction' in transform:
190                 ocio_transform.setDirection(
191                     direction_options[transform['direction']])
192
193             ocio_transforms.append(ocio_transform)
194
195         # *exponent* transform
196         elif transform['type'] == 'exponent':
197             ocio_transform = ocio.ExponentTransform()
198
199             if 'value' in transform:
200                 ocio_transform.setValue(transform['value'])
201
202             ocio_transforms.append(ocio_transform)
203
204         # *log* transform
205         elif transform['type'] == 'log':
206             ocio_transform = ocio.LogTransform()
207
208             if 'base' in transform:
209                 ocio_transform.setBase(transform['base'])
210
211             if 'direction' in transform:
212                 ocio_transform.setDirection(
213                     direction_options[transform['direction']])
214
215             ocio_transforms.append(ocio_transform)
216
217         # *colorspace* transform
218         elif transform['type'] == 'colorspace':
219             ocio_transform = ocio.ColorSpaceTransform()
220
221             if 'src' in transform:
222                 ocio_transform.setSrc(transform['src'])
223
224             if 'dst' in transform:
225                 ocio_transform.setDst(transform['dst'])
226
227             if 'direction' in transform:
228                 ocio_transform.setDirection(
229                     direction_options[transform['direction']])
230
231             ocio_transforms.append(ocio_transform)
232
233         # *look* transform
234         elif transform['type'] == 'look':
235             ocio_transform = ocio.LookTransform()
236             if 'look' in transform:
237                 ocio_transform.setLooks(transform['look'])
238
239             if 'src' in transform:
240                 ocio_transform.setSrc(transform['src'])
241
242             if 'dst' in transform:
243                 ocio_transform.setDst(transform['dst'])
244
245             if 'direction' in transform:
246                 ocio_transform.setDirection(
247                     direction_options[transform['direction']])
248
249             ocio_transforms.append(ocio_transform)
250
251         # *unknown* type
252         else:
253             print('Ignoring unknown transform type : %s' % transform['type'])
254
255     if len(ocio_transforms) > 1:
256         group_transform = ocio.GroupTransform()
257         for transform in ocio_transforms:
258             group_transform.push_back(transform)
259         transform = group_transform
260     else:
261         transform = ocio_transforms[0]
262
263     return transform
264
265
266 def add_colorspace_aliases(config,
267                            reference_colorspace,
268                            colorspace,
269                            colorspace_alias_names,
270                            family='Aliases'):
271     """
272     Adds given colorspace aliases to the *OCIO* config.
273
274     Parameters
275     ----------
276     config : Config
277         *OCIO* configuration.
278     reference_colorspace : Colorspace
279         Reference colorspace.
280     colorspace : Colorspace
281         Colorspace to set the aliases into the *OCIO* config.
282     family : unicode
283         Family.
284
285     Returns
286     -------
287     bool
288         Definition success.
289     """
290
291     for alias_name in colorspace_alias_names:
292         if alias_name.lower() == colorspace.name.lower():
293             print('Skipping alias creation for %s, alias %s, '
294                   'because lower cased names match' % (
295                       colorspace.name, alias_name))
296             continue
297
298         print('Adding alias colorspace space %s, alias to %s' % (
299             alias_name, colorspace.name))
300
301         compact_family_name = family
302
303         description = colorspace.description
304         if colorspace.aces_transform_id:
305             description += (
306                 '\n\nACES Transform ID : %s' % colorspace.aces_transform_id)
307
308         ocio_colorspace_alias = ocio.ColorSpace(
309             name=alias_name,
310             bitDepth=colorspace.bit_depth,
311             description=description,
312             equalityGroup=colorspace.equality_group,
313             family=compact_family_name,
314             isData=colorspace.is_data,
315             allocation=colorspace.allocation_type,
316             allocationVars=colorspace.allocation_vars)
317
318         if colorspace.to_reference_transforms:
319             print('\tGenerating To-Reference transforms')
320             ocio_transform = create_ocio_transform(
321                 [{'type': 'colorspace',
322                   'src': colorspace.name,
323                   'dst': reference_colorspace.name,
324                   'direction': 'forward'}])
325             ocio_colorspace_alias.setTransform(
326                 ocio_transform,
327                 ocio.Constants.COLORSPACE_DIR_TO_REFERENCE)
328
329         if colorspace.from_reference_transforms:
330             print('\tGenerating From-Reference transforms')
331             ocio_transform = create_ocio_transform(
332                 [{'type': 'colorspace',
333                   'src': reference_colorspace.name,
334                   'dst': colorspace.name,
335                   'direction': 'forward'}])
336             ocio_colorspace_alias.setTransform(
337                 ocio_transform,
338                 ocio.Constants.COLORSPACE_DIR_FROM_REFERENCE)
339
340         config.addColorSpace(ocio_colorspace_alias)
341
342
343 def add_look(config,
344              look,
345              custom_lut_dir,
346              reference_name,
347              config_data):
348     """
349     Adds given look to the *OCIO* config.
350
351     Parameters
352     ----------
353     config : Config
354         *OCIO* configuration.
355     look : array_like
356         Look description: {'name', 'colorspace', 'lut', 'cccid'}
357     custom_lut_dir : str or unicode
358         Directory to copy the look lut into.
359     reference_name : str or unicode
360         Reference name.
361     config_data : dict
362         Colorspaces and transforms converting between those colorspaces and
363         the reference colorspace, *ACES*.
364
365     Returns
366     -------
367     bool
368         Definition success.
369     """
370
371     look_name, look_colorspace, look_lut, look_cccid = unpack_default(look, 4)
372
373     print('Adding look %s - %s' % (look_name, ', '.join(look)))
374
375     # Copy *look LUT* if `custom_lut_dir` is provided.
376     if custom_lut_dir:
377         if '$' not in look_lut:
378             print('Getting ready to copy look lut : %s' % look_lut)
379             shutil.copy2(look_lut, custom_lut_dir)
380             look_lut = os.path.split(look_lut)[1]
381         else:
382             print('Skipping LUT copy because path contains a context variable')
383
384     print('Adding look to config')
385     ocio_look = ocio.Look()
386     ocio_look.setName(look_name)
387     ocio_look.setProcessSpace(look_colorspace)
388
389     keys = {'type': 'lutFile',
390             'path': look_lut,
391             'direction': 'forward'}
392     if look_cccid:
393         keys['cccid'] = look_cccid
394
395     ocio_transform = create_ocio_transform([keys])
396     ocio_look.setTransform(ocio_transform)
397
398     config.addLook(ocio_look)
399
400     print('Creating aliased colorspace')
401
402     # Creating *OCIO* colorspace referencing the look:
403     # - Needed for implementations that don't process looks properly.
404     # - Needed for implementations that don't expose looks properly.
405     look_aliases = ['look_%s' % compact(look_name)]
406     colorspace = ColorSpace(look_name,
407                             aliases=look_aliases,
408                             description='The %s Look colorspace' % look_name,
409                             family='Look')
410
411     colorspace.from_reference_transforms = [{'type': 'look',
412                                              'look': look_name,
413                                              'src': reference_name,
414                                              'dst': reference_name,
415                                              'direction': 'forward'}]
416
417     print('Adding colorspace %s, alias to look %s to config data' % (
418         look_name, look_name))
419
420     config_data['colorSpaces'].append(colorspace)
421
422     print('')
423
424
425 def add_looks_to_views(looks,
426                        reference_name,
427                        config_data,
428                        multiple_displays=False):
429     """
430     Object description.
431
432     Parameters
433     ----------
434     parameter : type
435         Parameter description.
436
437     Returns
438     -------
439     type
440          Return value description.
441     """
442     look_names = [look[0] for look in looks]
443
444     # Option 1
445     # - Adding a *look* per *Display*.
446     # - Assuming there is a *Display* for each *ACES* *Output Transform*.
447     if multiple_displays:
448         for look_name in look_names:
449             config_data['looks'].append(look_name)
450
451     # Option 2
452     # - Copy each *Output Transform* colorspace.
453     # - For each copy, add a *LookTransform* to the head of the
454     # `from_reference` transform list.
455     # - Add these the copy colorspaces for the *Displays* / *Views*.
456     else:
457         for display, view_list in config_data['displays'].iteritems():
458             colorspace_c = None
459             look_names_string = ''
460             for view_name, output_colorspace in view_list.iteritems():
461                 if view_name == 'Output Transform':
462
463                     print('Adding new View that incorporates looks')
464
465                     colorspace_c = copy.deepcopy(output_colorspace)
466
467                     for i, look_name in enumerate(look_names):
468                         look_name = look_names[i]
469
470                         # Add the `LookTransform` to the head of the
471                         # `from_reference` transform list.
472                         if colorspace_c.from_reference_transforms:
473                             colorspace_c.from_reference_transforms.insert(
474                                 i,
475                                 {'type': 'look',
476                                  'look': look_name,
477                                  'src': reference_name,
478                                  'dst': reference_name,
479                                  'direction': 'forward'})
480
481                         # Add the `LookTransform` to the end of
482                         # the `to_reference` transform list.
483                         if colorspace_c.to_reference_transforms:
484                             inverse_look_name = look_names[
485                                 len(look_names) - 1 - i]
486
487                             colorspace_c.to_reference_transforms.append(
488                                 {'type': 'look',
489                                  'look': inverse_look_name,
490                                  'src': reference_name,
491                                  'dst': reference_name,
492                                  'direction': 'inverse'})
493
494                         if look_name not in config_data['looks']:
495                             config_data['looks'].append(look_name)
496
497                     look_names_string = ', '.join(look_names)
498                     colorspace_c.name = '%s with %s' % (
499                         output_colorspace.name, look_names_string)
500                     colorspace_c.aliases = [
501                         'out_%s' % compact(colorspace_c.name)]
502
503                     print('Colorspace that incorporates looks '
504                           'created : %s' % colorspace_c.name)
505
506                     config_data['colorSpaces'].append(colorspace_c)
507
508             if colorspace_c:
509                 print('Adding colorspace that incorporates looks '
510                       'into view list')
511
512                 # Updating the *View* name.
513                 view_list['Output Transform with %s' % look_names_string] = (
514                     colorspace_c)
515                 config_data['displays'][display] = view_list
516
517
518 def create_config(config_data,
519                   aliases=False,
520                   prefix=False,
521                   multiple_displays=False,
522                   look_info=None,
523                   custom_lut_dir=None):
524     """
525     Object description.
526
527     Parameters
528     ----------
529     parameter : type
530         Parameter description.
531
532     Returns
533     -------
534     type
535          Return value description.
536     """
537
538     if look_info is None:
539         look_info = []
540
541     prefixed_names = {}
542     alias_colorspaces = []
543
544     config = ocio.Config()
545
546     config.setDescription('An ACES config generated from python')
547
548     search_path = ['luts']
549     if custom_lut_dir:
550         search_path.append('custom')
551     config.setSearchPath(':'.join(search_path))
552
553     reference_data = config_data['referenceColorSpace']
554
555     # Adding the colorspace *Family* into the name which helps with
556     # applications that presenting colorspaces as one a flat list.
557     if prefix:
558         prefixed_name = colorspace_prefixed_name(reference_data)
559         prefixed_names[reference_data.name] = prefixed_name
560         reference_data.name = prefixed_name
561
562     print('Adding the reference color space : %s' % reference_data.name)
563
564     reference = ocio.ColorSpace(
565         name=reference_data.name,
566         bitDepth=reference_data.bit_depth,
567         description=reference_data.description,
568         equalityGroup=reference_data.equality_group,
569         family=reference_data.family,
570         isData=reference_data.is_data,
571         allocation=reference_data.allocation_type,
572         allocationVars=reference_data.allocation_vars)
573
574     config.addColorSpace(reference)
575
576     if aliases:
577         if reference_data.aliases:
578             # Deferring adding alias colorspaces until end, which helps with
579             # applications listing the colorspaces in the order that they were
580             # defined in the configuration: alias colorspaces are usually named
581             # lower case with spaces but normal colorspaces names are longer
582             # and more verbose, thus it becomes harder for user to visually
583             # parse the list of colorspaces when there are names such as
584             # "crv_canonlog" interspersed with names like
585             # "Input - Canon - Curve - Canon-Log".
586             # Moving the alias colorspace definitions to the end of the
587             # configuration avoids the above problem.
588             alias_colorspaces.append(
589                 [reference_data, reference_data, reference_data.aliases])
590
591     print('')
592
593     if look_info:
594         print('Adding looks')
595
596         config_data['looks'] = []
597
598         for look in look_info:
599             add_look(config,
600                      look,
601                      custom_lut_dir,
602                      reference_data.name,
603                      config_data)
604
605         add_looks_to_views(look_info,
606                            reference_data.name,
607                            config_data,
608                            multiple_displays)
609
610         print('')
611
612     print('Adding regular colorspaces')
613
614     for colorspace in sorted(config_data['colorSpaces']):
615         # Adding the colorspace *Family* into the name which helps with
616         # applications that presenting colorspaces as one a flat list.
617         if prefix:
618             prefixed_name = colorspace_prefixed_name(colorspace)
619             prefixed_names[colorspace.name] = prefixed_name
620             colorspace.name = prefixed_name
621
622         print('Creating new color space : %s' % colorspace.name)
623
624         description = colorspace.description
625         if colorspace.aces_transform_id:
626             description += (
627                 '\n\nACES Transform ID : %s' % colorspace.aces_transform_id)
628
629         ocio_colorspace = ocio.ColorSpace(
630             name=colorspace.name,
631             bitDepth=colorspace.bit_depth,
632             description=description,
633             equalityGroup=colorspace.equality_group,
634             family=colorspace.family,
635             isData=colorspace.is_data,
636             allocation=colorspace.allocation_type,
637             allocationVars=colorspace.allocation_vars)
638
639         if colorspace.to_reference_transforms:
640             print('\tGenerating To-Reference transforms')
641             ocio_transform = create_ocio_transform(
642                 colorspace.to_reference_transforms)
643             ocio_colorspace.setTransform(
644                 ocio_transform,
645                 ocio.Constants.COLORSPACE_DIR_TO_REFERENCE)
646
647         if colorspace.from_reference_transforms:
648             print('\tGenerating From-Reference transforms')
649             ocio_transform = create_ocio_transform(
650                 colorspace.from_reference_transforms)
651             ocio_colorspace.setTransform(
652                 ocio_transform,
653                 ocio.Constants.COLORSPACE_DIR_FROM_REFERENCE)
654
655         config.addColorSpace(ocio_colorspace)
656
657         if aliases:
658             if colorspace.aliases:
659                 # Deferring adding alias colorspaces until end, which helps
660                 # with applications listing the colorspaces in the order that
661                 # they were defined in the configuration.
662                 alias_colorspaces.append(
663                     [reference_data, colorspace, colorspace.aliases])
664
665         print('')
666
667     print('')
668
669     # Adding roles early so that alias colorspaces can be created
670     # with roles names before remaining colorspace aliases are added
671     # to the configuration.
672     print('Setting the roles')
673
674     if prefix:
675         set_config_roles(
676             config,
677             color_picking=prefixed_names[
678                 config_data['roles']['color_picking']],
679             color_timing=prefixed_names[config_data['roles']['color_timing']],
680             compositing_log=prefixed_names[
681                 config_data['roles']['compositing_log']],
682             data=prefixed_names[config_data['roles']['data']],
683             default=prefixed_names[config_data['roles']['default']],
684             matte_paint=prefixed_names[config_data['roles']['matte_paint']],
685             reference=prefixed_names[config_data['roles']['reference']],
686             scene_linear=prefixed_names[config_data['roles']['scene_linear']],
687             texture_paint=prefixed_names[
688                 config_data['roles']['texture_paint']])
689
690         # TODO: Pending code path reactivation.
691         # Not allowed at the moment as role names can not overlap
692         # with colorspace names.
693         """
694         # Add the aliased colorspaces for each role
695         for role_name, role_colorspace_name in config_data['roles'].iteritems():
696             role_colorspace_prefixed_name = prefixed_names[role_colorspace_name]
697
698             print( 'Finding colorspace : %s' % role_colorspace_prefixed_name )
699             # Find the colorspace pointed to by the role
700             role_colorspaces = [colorspace
701                 for colorspace in config_data['colorSpaces']
702                 if colorspace.name == role_colorspace_prefixed_name]
703             role_colorspace = None
704             if len(role_colorspaces) > 0:
705                 role_colorspace = role_colorspaces[0]
706             else:
707                 if reference_data.name == role_colorspace_prefixed_name:
708                     role_colorspace = reference_data
709
710             if role_colorspace:
711                 print( 'Adding an alias colorspace named %s, pointing to %s' % (
712                     role_name, role_colorspace.name))
713
714                 add_colorspace_aliases(
715                 config, reference_data, role_colorspace, [role_name], 'Roles')
716         """
717
718     else:
719         set_config_roles(
720             config,
721             color_picking=config_data['roles']['color_picking'],
722             color_timing=config_data['roles']['color_timing'],
723             compositing_log=config_data['roles']['compositing_log'],
724             data=config_data['roles']['data'],
725             default=config_data['roles']['default'],
726             matte_paint=config_data['roles']['matte_paint'],
727             reference=config_data['roles']['reference'],
728             scene_linear=config_data['roles']['scene_linear'],
729             texture_paint=config_data['roles']['texture_paint'])
730
731         # TODO: Pending code path reactivation.
732         # Not allowed at the moment as role names can not overlap
733         # with colorspace names.
734         """
735         # Add the aliased colorspaces for each role
736         for role_name, role_colorspace_name in config_data['roles'].iteritems():
737             # Find the colorspace pointed to by the role
738             role_colorspaces = [colorspace
739             for colorspace in config_data['colorSpaces']
740             if colorspace.name == role_colorspace_name]
741             role_colorspace = None
742             if len(role_colorspaces) > 0:
743                 role_colorspace = role_colorspaces[0]
744             else:
745                 if reference_data.name == role_colorspace_name:
746                     role_colorspace = reference_data
747
748             if role_colorspace:
749                 print('Adding an alias colorspace named %s, pointing to %s' % (
750                     role_name, role_colorspace.name))
751
752                 add_colorspace_aliases(
753                 config, reference_data, role_colorspace, [role_name], 'Roles')
754         """
755
756     print('')
757
758     # Adding alias colorspaces at the end as some applications use
759     # colorspaces definitions order of the configuration to order
760     # the colorspaces in their selection lists, some applications
761     # use alphabetical ordering.
762     # This should keep the alias colorspaces out of the way for applications
763     # using the configuration order.
764     print('Adding the alias colorspaces')
765     for reference, colorspace, aliases in alias_colorspaces:
766         add_colorspace_aliases(config, reference, colorspace, aliases)
767
768     print('')
769
770     print('Adding the diplays and views')
771
772     # Setting the *color_picking* role to be the first *Display*'s
773     # *Output Transform* *View*.
774     default_display_name = config_data['defaultDisplay']
775     default_display_views = config_data['displays'][default_display_name]
776     default_display_colorspace = default_display_views['Output Transform']
777
778     set_config_roles(
779         config,
780         color_picking=default_display_colorspace.name)
781
782     # Defining *Displays* and *Views*.
783     displays, views = [], []
784
785     # Defining a generic *Display* and *View* setup.
786     if multiple_displays:
787         looks = config_data['looks'] if ('looks' in config_data) else []
788         looks = ', '.join(looks)
789         print('Creating multiple displays, with looks : %s' % looks)
790
791         # *Displays* are not reordered to put the *defaultDisplay* first
792         # because *OCIO* will order them alphabetically when the configuration
793         # is written to disk.
794         for display, view_list in config_data['displays'].iteritems():
795             for view_name, colorspace in view_list.iteritems():
796                 config.addDisplay(display, view_name, colorspace.name, looks)
797                 if 'Output Transform' in view_name and looks != '':
798                     # *Views* without *Looks*.
799                     config.addDisplay(display, view_name, colorspace.name)
800
801                     # *Views* with *Looks*.
802                     view_name_with_looks = '%s with %s' % (view_name, looks)
803                     config.addDisplay(display, view_name_with_looks,
804                                       colorspace.name, looks)
805                 else:
806                     config.addDisplay(display, view_name, colorspace.name)
807                 if not (view_name in views):
808                     views.append(view_name)
809             displays.append(display)
810
811     # *Displays* and *Views* useful in a *GUI* context.
812     else:
813         single_display_name = 'ACES'
814         displays.append(single_display_name)
815
816         # Ensuring the *defaultDisplay* is first.
817         display_names = sorted(config_data['displays'])
818         display_names.insert(0, display_names.pop(
819             display_names.index(default_display_name)))
820
821         looks = config_data['looks'] if ('looks' in config_data) else []
822         look_names = ', '.join(looks)
823
824         displays_views_colorspaces = []
825
826         for display in display_names:
827             view_list = config_data['displays'][display]
828             for view_name, colorspace in view_list.iteritems():
829                 if 'Output Transform' in view_name:
830
831                     # We use the *Display* names as the *View* names in this
832                     # case as there is a single *Display* containing all the
833                     # *Views*.
834                     # This works for more applications than not,as of the time
835                     # of this implementation.
836
837                     # Autodesk Maya 2016 doesn't support parentheses in
838                     # *View* names.
839                     sanitised_display = replace(display, {')': '', '(': ''})
840
841                     # *View* with *Looks*.
842                     if 'with' in view_name:
843                         sanitised_display = '%s with %s' % (
844                             sanitised_display, look_names)
845
846                         views_with_looks_at_end = False
847                         # Storing combo of *Display*, *View* and *Colorspace*
848                         # name so they can be added to the end of the list.
849                         if views_with_looks_at_end:
850                             displays_views_colorspaces.append(
851                                 [single_display_name, sanitised_display,
852                                  colorspace.name])
853                         else:
854                             config.addDisplay(single_display_name,
855                                               sanitised_display,
856                                               colorspace.name)
857
858                             if not (sanitised_display in views):
859                                 views.append(sanitised_display)
860
861                     # *View* without *Looks*.
862                     else:
863                         config.addDisplay(single_display_name,
864                                           sanitised_display,
865                                           colorspace.name)
866
867                         if not (sanitised_display in views):
868                             views.append(sanitised_display)
869
870         # Adding to the configuration any *Display*, *View* combinations that
871         # were saved for later.
872         # This list should be empty unless `views_with_looks_at_end` is
873         # set `True` above.
874         for display_view_colorspace in displays_views_colorspaces:
875             single_display_name, sanitised_display, colorspace_name = (
876                 display_view_colorspace)
877
878             config.addDisplay(single_display_name,
879                               sanitised_display,
880                               colorspace_name)
881
882             if not (sanitised_display in views):
883                 views.append(sanitised_display)
884
885         raw_display_space_name = config_data['roles']['data']
886         log_display_space_name = config_data['roles']['compositing_log']
887
888         if prefix:
889             raw_display_space_name = prefixed_names[raw_display_space_name]
890             log_display_space_name = prefixed_names[log_display_space_name]
891
892         config.addDisplay(single_display_name, 'Raw', raw_display_space_name)
893         views.append('Raw')
894         config.addDisplay(single_display_name, 'Log', log_display_space_name)
895         views.append('Log')
896
897     config.setActiveDisplays(','.join(sorted(displays)))
898     config.setActiveViews(','.join(views))
899
900     print('')
901
902     # Ensuring the configuration is valid.
903     config.sanityCheck()
904
905     # Resetting colorspace names to their non-prefixed versions.
906     if prefix:
907         prefixed_names_inverse = {}
908         for original, prefixed in prefixed_names.iteritems():
909             prefixed_names_inverse[prefixed] = original
910
911         reference_data.name = prefixed_names_inverse[reference_data.name]
912
913         try:
914             for colorspace in config_data['colorSpaces']:
915                 colorspace.name = prefixed_names_inverse[colorspace.name]
916         except:
917             print('Prefixed names')
918             for original, prefixed in prefixed_names.iteritems():
919                 print('%s, %s' % (original, prefixed))
920
921             print('\n')
922
923             print('Inverse Lookup of Prefixed names')
924             for prefixed, original in prefixed_names_inverse.iteritems():
925                 print('%s, %s' % (prefixed, original))
926             raise
927
928     return config
929
930
931 def create_config_data(odt_info,
932                        lmt_info,
933                        shaper_name,
934                        aces_ctl_directory,
935                        lut_directory,
936                        lut_resolution_1d=4096,
937                        lut_resolution_3d=64,
938                        cleanup=True):
939     """
940     Object description.
941
942     Parameters
943     ----------
944     parameter : type
945         Parameter description.
946
947     Returns
948     -------
949     dict
950          Colorspaces and transforms converting between those colorspaces and
951          the reference colorspace, *ACES*.
952     """
953
954     print('create_config_data - begin')
955     config_data = {}
956
957     config_data['displays'] = {}
958     config_data['colorSpaces'] = []
959
960     # -------------------------------------------------------------------------
961     # *ACES Color Spaces*
962     # -------------------------------------------------------------------------
963
964     # *ACES* colorspaces
965     (aces_reference,
966      aces_colorspaces,
967      aces_displays,
968      aces_log_display_space,
969      aces_roles,
970      aces_default_display) = aces.create_colorspaces(aces_ctl_directory,
971                                                      lut_directory,
972                                                      lut_resolution_1d,
973                                                      lut_resolution_3d,
974                                                      lmt_info,
975                                                      odt_info,
976                                                      shaper_name,
977                                                      cleanup)
978
979     config_data['referenceColorSpace'] = aces_reference
980     config_data['roles'] = aces_roles
981
982     for cs in aces_colorspaces:
983         config_data['colorSpaces'].append(cs)
984
985     for name, data in aces_displays.iteritems():
986         config_data['displays'][name] = data
987
988     config_data['defaultDisplay'] = aces_default_display
989     config_data['linearDisplaySpace'] = aces_reference
990     config_data['logDisplaySpace'] = aces_log_display_space
991
992     # -------------------------------------------------------------------------
993     # *Camera Input Transforms*
994     # -------------------------------------------------------------------------
995
996     # *ARRI Log-C* to *ACES*
997     arri_colorspaces = arri.create_colorspaces(lut_directory,
998                                                lut_resolution_1d)
999     for cs in arri_colorspaces:
1000         config_data['colorSpaces'].append(cs)
1001
1002     # *Canon-Log* to *ACES*
1003     canon_colorspaces = canon.create_colorspaces(lut_directory,
1004                                                  lut_resolution_1d)
1005     for cs in canon_colorspaces:
1006         config_data['colorSpaces'].append(cs)
1007
1008     # *GoPro Protune* to *ACES*
1009     gopro_colorspaces = gopro.create_colorspaces(lut_directory,
1010                                                  lut_resolution_1d)
1011     for cs in gopro_colorspaces:
1012         config_data['colorSpaces'].append(cs)
1013
1014     # *Panasonic V-Log* to *ACES*
1015     panasonic_colorspaces = panasonic.create_colorspaces(lut_directory,
1016                                                          lut_resolution_1d)
1017     for cs in panasonic_colorspaces:
1018         config_data['colorSpaces'].append(cs)
1019
1020     # *RED* colorspaces to *ACES*
1021     red_colorspaces = red.create_colorspaces(lut_directory,
1022                                              lut_resolution_1d)
1023     for cs in red_colorspaces:
1024         config_data['colorSpaces'].append(cs)
1025
1026     # *S-Log* to *ACES*
1027     sony_colorspaces = sony.create_colorspaces(lut_directory,
1028                                                lut_resolution_1d)
1029     for cs in sony_colorspaces:
1030         config_data['colorSpaces'].append(cs)
1031
1032     # -------------------------------------------------------------------------
1033     # General Colorspaces
1034     # -------------------------------------------------------------------------
1035     general_colorspaces = general.create_colorspaces(lut_directory,
1036                                                      lut_resolution_1d)
1037     for cs in general_colorspaces:
1038         config_data['colorSpaces'].append(cs)
1039
1040     # The *Raw* colorspace
1041     raw = general.create_raw()
1042     config_data['colorSpaces'].append(raw)
1043
1044     # Overriding various roles
1045     config_data['roles']['data'] = raw.name
1046     config_data['roles']['reference'] = raw.name
1047     config_data['roles']['texture_paint'] = raw.name
1048
1049     print('create_config_data - end')
1050
1051     return config_data
1052
1053
1054 def write_config(config, config_path, sanity_check=True):
1055     """
1056     Writes the configuration to given path.
1057
1058     Parameters
1059     ----------
1060     config : Config
1061         *OCIO* configuration.
1062     config_path : str or unicode
1063         Path to write the configuration path.
1064     sanity_check : bool
1065         Performs configuration sanity checking prior to writing it on disk.
1066
1067     Returns
1068     -------
1069     bool
1070          Definition success.
1071     """
1072
1073     if sanity_check:
1074         try:
1075             config.sanityCheck()
1076         except Exception, e:
1077             print e
1078             print 'Configuration was not written due to a failed Sanity Check'
1079             return
1080
1081     with open(config_path, mode='w') as fp:
1082         fp.write(config.serialize())
1083
1084
1085 def generate_baked_LUTs(odt_info,
1086                         shaper_name,
1087                         baked_directory,
1088                         config_path,
1089                         lut_resolution_3d,
1090                         lut_resolution_shaper=1024,
1091                         prefix=False):
1092     """
1093     Object description.
1094
1095     Parameters
1096     ----------
1097     parameter : type
1098         Parameter description.
1099
1100     Returns
1101     -------
1102     type
1103          Return value description.
1104     """
1105
1106     odt_info_C = dict(odt_info)
1107
1108     # Older behavior for *ODTs* that have support for full and legal ranges,
1109     # generating a LUT for both ranges.
1110     """
1111     # Create two entries for ODTs that have full and legal range support
1112     for odt_ctl_name, odt_values in odt_info.iteritems():
1113         if odt_values['transformHasFullLegalSwitch']:
1114             odt_name = odt_values['transformUserName']
1115
1116             odt_values_legal = dict(odt_values)
1117             odt_values_legal['transformUserName'] = '%s - Legal' % odt_name
1118             odt_info_C['%s - Legal' % odt_ctl_name] = odt_values_legal
1119
1120             odt_values_full = dict(odt_values)
1121             odt_values_full['transformUserName'] = '%s - Full' % odt_name
1122             odt_info_C['%s - Full' % odt_ctl_name] = odt_values_full
1123
1124             del (odt_info_C[odt_ctl_name])
1125     """
1126
1127     for odt_ctl_name, odt_values in odt_info_C.iteritems():
1128         odt_prefix = odt_values['transformUserNamePrefix']
1129         odt_name = odt_values['transformUserName']
1130
1131         # *Photoshop*
1132         for input_space in ['ACEScc', 'ACESproxy']:
1133             args = ['--iconfig', config_path,
1134                     '-v']
1135             if prefix:
1136                 args += ['--inputspace', 'ACES - %s' % input_space]
1137                 args += ['--outputspace', 'Output - %s' % odt_name]
1138             else:
1139                 args += ['--inputspace', input_space]
1140                 args += ['--outputspace', odt_name]
1141
1142             args += ['--description',
1143                      '%s - %s for %s data' % (odt_prefix,
1144                                               odt_name,
1145                                               input_space)]
1146             if prefix:
1147                 args += ['--shaperspace', 'Utility - %s' % shaper_name,
1148                          '--shapersize', str(lut_resolution_shaper)]
1149             else:
1150                 args += ['--shaperspace', shaper_name,
1151                          '--shapersize', str(lut_resolution_shaper)]
1152             args += ['--cubesize', str(lut_resolution_3d)]
1153             args += ['--format',
1154                      'icc',
1155                      os.path.join(baked_directory,
1156                                   'photoshop',
1157                                   '%s for %s.icc' % (odt_name, input_space))]
1158
1159             bake_lut = Process(description='bake a LUT',
1160                                cmd='ociobakelut',
1161                                args=args)
1162             bake_lut.execute()
1163
1164         # *Flame*, *Lustre*
1165         for input_space in ['ACEScc', 'ACESproxy']:
1166             args = ['--iconfig', config_path,
1167                     '-v']
1168             if prefix:
1169                 args += ['--inputspace', 'ACES - %s' % input_space]
1170                 args += ['--outputspace', 'Output - %s' % odt_name]
1171             else:
1172                 args += ['--inputspace', input_space]
1173                 args += ['--outputspace', odt_name]
1174             args += ['--description',
1175                      '%s - %s for %s data' % (
1176                          odt_prefix, odt_name, input_space)]
1177             if prefix:
1178                 args += ['--shaperspace', 'Utility - %s' % shaper_name,
1179                          '--shapersize', str(lut_resolution_shaper)]
1180             else:
1181                 args += ['--shaperspace', shaper_name,
1182                          '--shapersize', str(lut_resolution_shaper)]
1183             args += ['--cubesize', str(lut_resolution_3d)]
1184
1185             fargs = ['--format',
1186                      'flame',
1187                      os.path.join(
1188                          baked_directory,
1189                          'flame',
1190                          '%s for %s Flame.3dl' % (odt_name, input_space))]
1191             bake_lut = Process(description='bake a LUT',
1192                                cmd='ociobakelut',
1193                                args=(args + fargs))
1194             bake_lut.execute()
1195
1196             largs = ['--format',
1197                      'lustre',
1198                      os.path.join(
1199                          baked_directory,
1200                          'lustre',
1201                          '%s for %s Lustre.3dl' % (odt_name, input_space))]
1202             bake_lut = Process(description='bake a LUT',
1203                                cmd='ociobakelut',
1204                                args=(args + largs))
1205             bake_lut.execute()
1206
1207         # *Maya*, *Houdini*
1208         for input_space in ['ACEScg', 'ACES2065-1']:
1209             args = ['--iconfig', config_path,
1210                     '-v']
1211             if prefix:
1212                 args += ['--inputspace', 'ACES - %s' % input_space]
1213                 args += ['--outputspace', 'Output - %s' % odt_name]
1214             else:
1215                 args += ['--inputspace', input_space]
1216                 args += ['--outputspace', odt_name]
1217             args += ['--description',
1218                      '%s - %s for %s data' % (
1219                          odt_prefix, odt_name, input_space)]
1220             if input_space == 'ACEScg':
1221                 lin_shaper_name = '%s - AP1' % shaper_name
1222             else:
1223                 lin_shaper_name = shaper_name
1224             if prefix:
1225                 lin_shaper_name = 'Utility - %s' % lin_shaper_name
1226             args += ['--shaperspace', lin_shaper_name,
1227                      '--shapersize', str(lut_resolution_shaper)]
1228
1229             args += ['--cubesize', str(lut_resolution_3d)]
1230
1231             margs = ['--format',
1232                      'cinespace',
1233                      os.path.join(
1234                          baked_directory,
1235                          'maya',
1236                          '%s for %s Maya.csp' % (odt_name, input_space))]
1237             bake_lut = Process(description='bake a LUT',
1238                                cmd='ociobakelut',
1239                                args=(args + margs))
1240             bake_lut.execute()
1241
1242             hargs = ['--format',
1243                      'houdini',
1244                      os.path.join(
1245                          baked_directory,
1246                          'houdini',
1247                          '%s for %s Houdini.lut' % (odt_name, input_space))]
1248             bake_lut = Process(description='bake a LUT',
1249                                cmd='ociobakelut',
1250                                args=(args + hargs))
1251             bake_lut.execute()
1252
1253
1254 def generate_config_directory(config_directory,
1255                               bake_secondary_luts=False,
1256                               custom_lut_dir=None):
1257     """
1258     Object description.
1259
1260     Parameters
1261     ----------
1262     parameter : type
1263         Parameter description.
1264
1265     Returns
1266     -------
1267     type
1268          Return value description.
1269     """
1270
1271     lut_directory = os.path.join(config_directory, 'luts')
1272     dirs = [config_directory, lut_directory]
1273
1274     if bake_secondary_luts:
1275         dirs.extend([os.path.join(config_directory, 'baked'),
1276                      os.path.join(config_directory, 'baked', 'flame'),
1277                      os.path.join(config_directory, 'baked', 'photoshop'),
1278                      os.path.join(config_directory, 'baked', 'houdini'),
1279                      os.path.join(config_directory, 'baked', 'lustre'),
1280                      os.path.join(config_directory, 'baked', 'maya')])
1281
1282     if custom_lut_dir:
1283         dirs.append(os.path.join(config_directory, 'custom'))
1284
1285     for d in dirs:
1286         not os.path.exists(d) and os.mkdir(d)
1287
1288     return lut_directory
1289
1290
1291 def generate_config(aces_ctl_directory,
1292                     config_directory,
1293                     lut_resolution_1d=4096,
1294                     lut_resolution_3d=64,
1295                     bake_secondary_luts=True,
1296                     multiple_displays=False,
1297                     look_info=None,
1298                     copy_custom_luts=True,
1299                     cleanup=True,
1300                     prefix_colorspaces_with_family_names=True):
1301     """
1302     Creates the ACES configuration.
1303
1304     Parameters
1305     ----------
1306     parameter : type
1307         Parameter description.
1308
1309     Returns
1310     -------
1311     type
1312          Return value description.
1313     """
1314
1315     if look_info is None:
1316         look_info = []
1317
1318     custom_lut_dir = None
1319     if copy_custom_luts:
1320         custom_lut_dir = os.path.join(config_directory, 'custom')
1321
1322     lut_directory = generate_config_directory(config_directory,
1323                                               bake_secondary_luts,
1324                                               custom_lut_dir)
1325
1326     odt_info = aces.get_ODTs_info(aces_ctl_directory)
1327     lmt_info = aces.get_LMTs_info(aces_ctl_directory)
1328
1329     shaper_name = 'Output Shaper'
1330     config_data = create_config_data(odt_info,
1331                                      lmt_info,
1332                                      shaper_name,
1333                                      aces_ctl_directory,
1334                                      lut_directory,
1335                                      lut_resolution_1d,
1336                                      lut_resolution_3d,
1337                                      cleanup)
1338
1339     print('Creating config - with prefixes, with aliases')
1340     config = create_config(config_data,
1341                            prefix=prefix_colorspaces_with_family_names,
1342                            aliases=True,
1343                            multiple_displays=multiple_displays,
1344                            look_info=look_info,
1345                            custom_lut_dir=custom_lut_dir)
1346     print('\n\n\n')
1347
1348     write_config(config,
1349                  os.path.join(config_directory, 'config.ocio'))
1350
1351     if bake_secondary_luts:
1352         generate_baked_LUTs(odt_info,
1353                             shaper_name,
1354                             os.path.join(config_directory, 'baked'),
1355                             os.path.join(config_directory, 'config.ocio'),
1356                             lut_resolution_3d,
1357                             lut_resolution_1d,
1358                             prefix=prefix_colorspaces_with_family_names)
1359
1360     return True
1361
1362
1363 def main():
1364     """
1365     Object description.
1366
1367     Parameters
1368     ----------
1369     parameter : type
1370         Parameter description.
1371
1372     Returns
1373     -------
1374     type
1375          Return value description.
1376     """
1377
1378     import optparse
1379
1380     usage = '%prog [options]\n'
1381     usage += '\n'
1382     usage += 'An OCIO config generation script for ACES 1.0\n'
1383     usage += '\n'
1384     usage += 'Command line examples'
1385     usage += '\n'
1386     usage += ('Create a GUI-friendly ACES 1.0 config with no secondary, '
1387               'baked LUTs : \n')
1388     usage += ('\tcreate_aces_config -a /path/to/aces-dev/transforms/ctl '
1389               '--lutResolution1d 1024 --lutResolution3d 33 -c aces_1.0.0 '
1390               '--dontBakeSecondaryLUTs')
1391     usage += '\n'
1392     usage += 'Create a more OCIO-compliant ACES 1.0 config : \n'
1393     usage += ('\tcreate_aces_config -a /path/to/aces-dev/transforms/ctl '
1394               '--lutResolution1d 1024 --lutResolution3d 33 -c aces_1.0.0 '
1395               '--createMultipleDisplays')
1396     usage += '\n'
1397     usage += '\n'
1398     usage += 'Adding custom looks'
1399     usage += '\n'
1400     usage += ('Create a GUI-friendly ACES 1.0 config with an ACES-style CDL '
1401               '(will be applied in the ACEScc colorspace): \n')
1402     usage += ('\tcreate_aces_config -a /path/to/aces-dev/transforms/ctl '
1403               '--lutResolution1d 1024 --lutResolution3d 33 -c aces_1.0.0 '
1404               '\n\t\t--addACESLookCDL ACESCDLName '
1405               '/path/to/SampleCDL.ccc cc03345')
1406     usage += '\n'
1407     usage += 'Create a GUI-friendly ACES 1.0 config with an general CDL: \n'
1408     usage += ('\tcreate_aces_config -a /path/to/aces-dev/transforms/ctl '
1409               '--lutResolution1d 1024 --lutResolution3d 33 -c aces_1.0.0 '
1410               '\n\t\t--addCustomLookCDL CustomCDLName "ACES - ACEScc" '
1411               '/path/to/SampleCDL.ccc cc03345')
1412     usage += '\n'
1413     usage += ('\tIn this example, the CDL will be applied in the '
1414               'ACEScc colorspace, but the user could choose other spaces '
1415               'by changing the argument after the name of the look. \n')
1416     usage += '\n'
1417     usage += ('Create a GUI-friendly ACES 1.0 config with an ACES-style LUT '
1418               '(will be applied in the ACEScc colorspace): \n')
1419     usage += ('\tcreate_aces_config -a /path/to/aces-dev/transforms/ctl '
1420               '--lutResolution1d 1024 --lutResolution3d 33 -c aces_1.0.0 '
1421               '\n\t\t--addACESLookLUT ACESLUTName '
1422               '/path/to/SampleCDL.ccc cc03345')
1423     usage += '\n'
1424     usage += 'Create a GUI-friendly ACES 1.0 config with an general LUT: \n'
1425     usage += ('\tcreate_aces_config -a /path/to/aces-dev/transforms/ctl '
1426               '--lutResolution1d 1024 --lutResolution3d 33 -c aces_1.0.0 '
1427               '\n\t\t--addCustomLookLUT CustomLUTName "ACES - ACEScc" '
1428               '/path/to/SampleCDL.ccc cc03345')
1429     usage += '\n'
1430     usage += ('\tIn this example, the LUT will be applied in the '
1431               'ACEScc colorspace, but the user could choose other spaces '
1432               'by changing the argument after the name of the look. \n')
1433     usage += '\n'
1434
1435     look_info = []
1436
1437     def look_info_callback(option, opt_str, value, parser):
1438         print('look_info_callback')
1439         print(option, opt_str, value, parser)
1440         if opt_str == '--addCustomLookCDL':
1441             look_info.append(value)
1442         elif opt_str == '--addCustomLookLUT':
1443             look_info.append(value)
1444         elif opt_str == '--addACESLookCDL':
1445             look_info.append([value[0], 'ACES - ACEScc', value[1], value[2]])
1446         elif opt_str == '--addACESLookLUT':
1447             look_info.append([value[0], 'ACES - ACEScc', value[1]])
1448
1449     p = optparse.OptionParser(description='',
1450                               prog='create_aces_config',
1451                               version='create_aces_config 1.0',
1452                               usage=usage)
1453     p.add_option('--acesCTLDir', '-a', default=os.environ.get(
1454         ACES_OCIO_CTL_DIRECTORY_ENVIRON, None))
1455     p.add_option('--configDir', '-c', default=os.environ.get(
1456         ACES_OCIO_CONFIGURATION_DIRECTORY_ENVIRON, None))
1457     p.add_option('--lutResolution1d', default=4096)
1458     p.add_option('--lutResolution3d', default=64)
1459     p.add_option('--dontBakeSecondaryLUTs', action='store_true', default=False)
1460     p.add_option('--keepTempImages', action='store_true', default=False)
1461
1462     p.add_option('--createMultipleDisplays', action='store_true',
1463                  default=False)
1464
1465     p.add_option('--addCustomLookLUT', '', type='string', nargs=3,
1466                  action='callback', callback=look_info_callback)
1467     p.add_option('--addCustomLookCDL', '', type='string', nargs=4,
1468                  action='callback', callback=look_info_callback)
1469     p.add_option('--addACESLookLUT', '', type='string', nargs=2,
1470                  action='callback', callback=look_info_callback)
1471     p.add_option('--addACESLookCDL', '', type='string', nargs=3,
1472                  action='callback', callback=look_info_callback)
1473     p.add_option('--copyCustomLUTs', action='store_true', default=False)
1474
1475     options, arguments = p.parse_args()
1476
1477     aces_ctl_directory = options.acesCTLDir
1478     config_directory = options.configDir
1479     lut_resolution_1d = int(options.lutResolution1d)
1480     lut_resolution_3d = int(options.lutResolution3d)
1481     bake_secondary_luts = not options.dontBakeSecondaryLUTs
1482     cleanup_temp_images = not options.keepTempImages
1483     multiple_displays = options.createMultipleDisplays
1484     copy_custom_luts = options.copyCustomLUTs
1485
1486     print(look_info)
1487
1488     print('command line : \n%s\n' % ' '.join(sys.argv))
1489
1490     assert aces_ctl_directory is not None, (
1491         'process: No "{0}" environment variable defined or no "ACES CTL" '
1492         'directory specified'.format(
1493             ACES_OCIO_CTL_DIRECTORY_ENVIRON))
1494
1495     assert config_directory is not None, (
1496         'process: No "{0}" environment variable defined or no configuration '
1497         'directory specified'.format(
1498             ACES_OCIO_CONFIGURATION_DIRECTORY_ENVIRON))
1499
1500     return generate_config(aces_ctl_directory,
1501                            config_directory,
1502                            lut_resolution_1d,
1503                            lut_resolution_3d,
1504                            bake_secondary_luts,
1505                            multiple_displays,
1506                            look_info,
1507                            copy_custom_luts,
1508                            cleanup_temp_images)
1509
1510
1511 if __name__ == '__main__':
1512     main()