#!/usr/bin/env python3
# (C) 2023 Cadence Design Systems, Inc. (Cadence)
# All rights reserved.
# TERMS FOR USE OF SAMPLE CODE The software below ("Sample Code") is
# provided to current licensees or subscribers of Cadence products or
# SaaS offerings (each a "Customer").
# Customer is hereby permitted to use, copy, and modify the Sample Code,
# subject to these terms. Cadence claims no rights to Customer's
# modifications. Modification of Sample Code is at Customer's sole and
# exclusive risk. Sample Code may require Customer to have a then
# current license or subscription to the applicable Cadence offering.
# THE SAMPLE CODE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED.  OPENEYE DISCLAIMS ALL WARRANTIES, INCLUDING, BUT
# NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
# PARTICULAR PURPOSE AND NONINFRINGEMENT. In no event shall Cadence be
# liable for any damages or liability in connection with the Sample Code
# or its use.

"""Code snippet for ring perception."""

from openeye import oechem, oedepict

mol = oechem.OEGraphMol()
oechem.OESmilesToMol(mol, "CC(=O)C1CC2CC(C1C2)Cc3ccc4c(c3)cc[nH]4")
oedepict.OEPrepareDepiction(mol)

width, height = 400, 300
image = oedepict.OEImage(width, height)
opts = oedepict.OE2DMolDisplayOptions(width, height, oedepict.OEScale_AutoScale)
opts.SetAtomColorStyle(oedepict.OEAtomColorStyle_WhiteMonochrome)

num_rings, ring_list = oechem.OEDetermineAromaticRingSystems(mol)

disp = oedepict.OE2DMolDisplay(mol, opts)

highlight = oedepict.OEHighlightByLasso(oechem.OEBlack)
highlight.SetConsiderAtomLabelBoundingBox(True)

ring_pred = oechem.OEPartPredAtom(ring_list)
for ring_idx, color in zip(
    range(1, num_rings + 1), oechem.OEGetVividColors(), strict=False
):
    ring_pred.SelectPart(ring_idx)
    ring_set = oechem.OEAtomBondSet(mol.GetAtoms(ring_pred))
    highlight.SetColor(color)
    oedepict.OEAddHighlighting(disp, highlight, ring_set)

oedepict.OERenderMolecule(image, disp)
oedepict.OEWriteImage("depict_aromatic_ring_system.svg", image)
