Skip to content
Snippets Groups Projects
__init__.py 25.1 KiB
Newer Older
Campbell Barton's avatar
Campbell Barton committed
# ##### BEGIN GPL LICENSE BLOCK #####
#
#  This program 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 2
#  of the License, or (at your option) any later version.
#
#  This program 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 this program; if not, write to the Free Software Foundation,
#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####

bl_info = {
    "name": "PDB Atomic Blender",
    "description": "Loading and manipulating atoms from PDB files",
    "author": "Clemens Barth",
Clemens Barth's avatar
 
Clemens Barth committed
    "version": (1,2),
Campbell Barton's avatar
Campbell Barton committed
    "blender": (2,6),
    "location": "File -> Import -> PDB (.pdb), Panel: View 3D - Tools",
    "warning": "",
Brendon Murphy's avatar
Brendon Murphy committed
    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Import-Export/PDB",
Campbell Barton's avatar
Campbell Barton committed
    "tracker_url": "http://projects.blender.org/tracker/"
                   "index.php?func=detail&aid=29226",
Campbell Barton's avatar
Campbell Barton committed
    "category": "Import-Export"
}

import bpy
from bpy.types import Operator, Panel
from bpy_extras.io_utils import ImportHelper, ExportHelper
Campbell Barton's avatar
Campbell Barton committed
from bpy.props import (StringProperty,
                       BoolProperty,
                       EnumProperty,
                       IntProperty,
                       FloatProperty)


# TODO, allow reload
from . import import_pdb
Campbell Barton's avatar
Campbell Barton committed

Clemens Barth's avatar
 
Clemens Barth committed
ATOM_PDB_ERROR = ""

Campbell Barton's avatar
Campbell Barton committed
# -----------------------------------------------------------------------------
#                                                                           GUI

# The panel, which is loaded after the file has been
# chosen via the menu 'File -> Import'
class CLASS_atom_pdb_panel(Panel):
Campbell Barton's avatar
Campbell Barton committed
    bl_label       = "PDB - Atomic Blender"
    #bl_space_type  = "PROPERTIES"
    #bl_region_type = "WINDOW"
    #bl_context     = "physics"
    # This could be also an option ... :
    bl_space_type  = "VIEW_3D"
Clemens Barth's avatar
 
Clemens Barth committed
    #bl_region_type = "TOOLS"
Campbell Barton's avatar
Campbell Barton committed
    bl_region_type = "TOOL_PROPS"

    @classmethod
    def poll(self, context):
        if import_pdb.ATOM_PDB_FILEPATH == "":
            return False
        else:
            return True

    def draw(self, context):
        layout = self.layout
        scn    = bpy.context.scene

        row = layout.row()
Clemens Barth's avatar
 
Clemens Barth committed
        row.label(text="Outputs and custom data file")

        box = layout.box()
        row = box.row()
Campbell Barton's avatar
Campbell Barton committed
        row.label(text="Custom data file")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
Campbell Barton's avatar
Campbell Barton committed
        col = row.column()
        col.prop(scn, "atom_pdb_datafile")
        col.operator("atom_pdb.datafile_apply")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
Campbell Barton's avatar
Campbell Barton committed
        col = row.column(align=True)
        col.prop(scn, "atom_pdb_PDB_file")

        row = layout.row()
Clemens Barth's avatar
 
Clemens Barth committed
        row.label(text="Reload structure")

        box = layout.box()
        row = box.row()
Clemens Barth's avatar
 
Clemens Barth committed
        col = row.column()
Campbell Barton's avatar
Campbell Barton committed
        col.prop(scn, "use_atom_pdb_mesh")
Clemens Barth's avatar
 
Clemens Barth committed
        col = row.column()
        col.label(text="Scaling factors")
        row = box.row()
        col = row.column(align=True)  
        col.active = scn.use_atom_pdb_mesh   
Campbell Barton's avatar
Campbell Barton committed
        col.prop(scn, "atom_pdb_mesh_azimuth")
        col.prop(scn, "atom_pdb_mesh_zenith")
        col = row.column(align=True)
Campbell Barton's avatar
Campbell Barton committed
        col.prop(scn, "atom_pdb_scale_ballradius")
        col.prop(scn, "atom_pdb_scale_distances")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
Clemens Barth's avatar
 
Clemens Barth committed
        col = row.column()  
Campbell Barton's avatar
Campbell Barton committed
        col.prop(scn, "use_atom_pdb_sticks")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()        
        row.active = scn.use_atom_pdb_sticks
Campbell Barton's avatar
Campbell Barton committed
        col = row.column(align=True)
        col.prop(scn, "atom_pdb_sticks_sectors")
        col.prop(scn, "atom_pdb_sticks_radius")
Clemens Barth's avatar
 
Clemens Barth committed
        col.prop(scn, "atom_pdb_sticks_unit_length")
Clemens Barth's avatar
 
Clemens Barth committed
        col = row.column(align=True)        
Clemens Barth's avatar
 
Clemens Barth committed
        col.prop(scn, "use_atom_pdb_sticks_color")        
Clemens Barth's avatar
 
Clemens Barth committed
        col.prop(scn, "use_atom_pdb_sticks_smooth")
        col.prop(scn, "use_atom_pdb_sticks_bonds")
        row = box.row()        
        row.active = scn.use_atom_pdb_sticks
        col = row.column(align=True)
        col = row.column(align=True)
        col.active = scn.use_atom_pdb_sticks and scn.use_atom_pdb_sticks_bonds 
        col.prop(scn, "atom_pdb_sticks_dist")        
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
        row.prop(scn, "use_atom_pdb_center")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
Campbell Barton's avatar
Campbell Barton committed
        col = row.column()
        col.prop(scn, "use_atom_pdb_cam")
        col.prop(scn, "use_atom_pdb_lamp")
        col = row.column()
Campbell Barton's avatar
Campbell Barton committed
        col.operator("atom_pdb.button_reload")
        col.prop(scn, "atom_pdb_number_atoms")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
        row.operator("atom_pdb.button_distance")
        row.prop(scn, "atom_pdb_distance")
Campbell Barton's avatar
Campbell Barton committed

Clemens Barth's avatar
 
Clemens Barth committed
        row.label(text="Modify atom radii")
Clemens Barth's avatar
 
Clemens Barth committed
        
Clemens Barth's avatar
 
Clemens Barth committed
        box = layout.box()
        row = box.row()
Campbell Barton's avatar
Campbell Barton committed
        row.label(text="All changes concern:")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
        row.prop(scn, "atom_pdb_radius_how")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
        row.label(text="1. Change type of radii")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
        row.prop(scn, "atom_pdb_radius_type")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
        row.label(text="2. Change atom radii in pm")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
        row.prop(scn, "atom_pdb_radius_pm_name")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
Campbell Barton's avatar
Campbell Barton committed
        row.prop(scn, "atom_pdb_radius_pm")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
        row.label(text="3. Change atom radii by scale")
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
Campbell Barton's avatar
Campbell Barton committed
        col.prop(scn, "atom_pdb_radius_all")
        col = row.column(align=True)
Campbell Barton's avatar
Campbell Barton committed
        col.operator( "atom_pdb.radius_all_bigger" )
        col.operator( "atom_pdb.radius_all_smaller" )
Clemens Barth's avatar
 
Clemens Barth committed
        row = box.row()
        row.label(text="4. Show sticks only")
        row = box.row()
        col = row.column()
        col.operator( "atom_pdb.radius_sticks" )
Campbell Barton's avatar
Campbell Barton committed
        if bpy.context.mode == 'EDIT_MESH':
Campbell Barton's avatar
Campbell Barton committed
            row = layout.row()
Clemens Barth's avatar
 
Clemens Barth committed
            row.label(text="Separate atom")
            box = layout.box()
            row = box.row()
Campbell Barton's avatar
Campbell Barton committed
            row.operator( "atom_pdb.separate_atom" )


class CLASS_atom_pdb_IO(bpy.types.PropertyGroup):
Campbell Barton's avatar
Campbell Barton committed
    def Callback_radius_type(self, context):
        scnn = bpy.context.scene
        import_pdb.DEF_atom_pdb_radius_type(
                scnn.atom_pdb_radius_type,
                scnn.atom_pdb_radius_how,
                )
Campbell Barton's avatar
Campbell Barton committed
    def Callback_radius_pm(self, context):
        scnn = bpy.context.scene
        import_pdb.DEF_atom_pdb_radius_pm(
                scnn.atom_pdb_radius_pm_name,
Campbell Barton's avatar
Campbell Barton committed
                scnn.atom_pdb_radius_pm,
                scnn.atom_pdb_radius_how,
                )
Clemens Barth's avatar
 
Clemens Barth committed
    # In the file dialog window - Import
Campbell Barton's avatar
Campbell Barton committed
    scn = bpy.types.Scene
    scn.use_atom_pdb_cam = BoolProperty(
        name="Camera", default=False,
        description="Do you need a camera?")
Campbell Barton's avatar
Campbell Barton committed
    scn.use_atom_pdb_lamp = BoolProperty(
        name="Lamp", default=False,
        description = "Do you need a lamp?")
Campbell Barton's avatar
Campbell Barton committed
    scn.use_atom_pdb_mesh = BoolProperty(
        name = "Mesh balls", default=False,
Clemens Barth's avatar
 
Clemens Barth committed
        description = "Use mesh balls instead of NURBS")
Campbell Barton's avatar
Campbell Barton committed
    scn.atom_pdb_mesh_azimuth = IntProperty(
        name = "Azimuth", default=32, min=0,
Campbell Barton's avatar
Campbell Barton committed
        description = "Number of sectors (azimuth)")
    scn.atom_pdb_mesh_zenith = IntProperty(
        name = "Zenith", default=32, min=0,
Campbell Barton's avatar
Campbell Barton committed
        description = "Number of sectors (zenith)")
    scn.atom_pdb_scale_ballradius = FloatProperty(
        name = "Balls", default=1.0, min=0.0,
Campbell Barton's avatar
Campbell Barton committed
        description = "Scale factor for all atom radii")
    scn.atom_pdb_scale_distances = FloatProperty (
        name = "Distances", default=1.0, min=0.0,
Campbell Barton's avatar
Campbell Barton committed
        description = "Scale factor for all distances")
    scn.use_atom_pdb_center = BoolProperty(
        name = "Object to origin", default=True,
Clemens Barth's avatar
 
Clemens Barth committed
        description = "Put the object into the global origin")
Campbell Barton's avatar
Campbell Barton committed
    scn.use_atom_pdb_sticks = BoolProperty(
Clemens Barth's avatar
 
Clemens Barth committed
        name="Use sticks", default=True,
Clemens Barth's avatar
 
Clemens Barth committed
        description="Do you want to display the sticks?")
Campbell Barton's avatar
Campbell Barton committed
    scn.atom_pdb_sticks_sectors = IntProperty(
        name = "Sector", default=20, min=0,
        description="Number of sectors of a stick")
Campbell Barton's avatar
Campbell Barton committed
    scn.atom_pdb_sticks_radius = FloatProperty(
        name = "Radius", default=0.1, min=0.0,
        description ="Radius of a stick")
Clemens Barth's avatar
 
Clemens Barth committed
    scn.atom_pdb_sticks_unit_length = FloatProperty(
        name = "Unit", default=0.2, min=0,
        description = "Length of the unit of a stick in Angstrom")        
Clemens Barth's avatar
 
Clemens Barth committed
    scn.use_atom_pdb_sticks_color = BoolProperty(
Clemens Barth's avatar
 
Clemens Barth committed
        name="Color", default=True,
Clemens Barth's avatar
 
Clemens Barth committed
        description="The sticks appear in the color of the atoms")
Clemens Barth's avatar
 
Clemens Barth committed
    scn.use_atom_pdb_sticks_smooth = BoolProperty(
        name="Smooth", default=False,
        description="The sticks are round (sectors are not visible)")     
    scn.use_atom_pdb_sticks_bonds = BoolProperty(
        name="Bonds", default=False,
        description="Show double and tripple bonds.")
Clemens Barth's avatar
 
Clemens Barth committed
    scn.atom_pdb_sticks_dist = FloatProperty(
        name="Distance", default = 1.1, min=1.0, max=3.0,
        description="Distance between sticks measured in stick diameter")        
Campbell Barton's avatar
Campbell Barton committed
    scn.atom_pdb_atomradius = EnumProperty(
        name="Type of radius",
        description="Choose type of atom radius",
        items=(('0', "Pre-defined", "Use pre-defined radius"),
               ('1', "Atomic", "Use atomic radius"),
               ('2', "van der Waals", "Use van der Waals radius")),
Campbell Barton's avatar
Campbell Barton committed

Clemens Barth's avatar
 
Clemens Barth committed
    # In the file dialog window - Export
    scn.atom_pdb_export_type = EnumProperty(
        name="Type of Objects",
        description="Choose type of objects",
        items=(('0', "All", "Export all active objects"),
               ('1', "Elements", "Export only those active objects which have a proper element name")),
               default='1',)    
    
Campbell Barton's avatar
Campbell Barton committed
    # In the panel
    scn.atom_pdb_datafile = StringProperty(
        name = "", description="Path to your custom data file",
Campbell Barton's avatar
Campbell Barton committed
        maxlen = 256, default = "", subtype='FILE_PATH')
    scn.atom_pdb_PDB_file = StringProperty(
Clemens Barth's avatar
 
Clemens Barth committed
        name = "PDB file", default="",
        description = "Path of the PDB file")
    scn.atom_pdb_number_atoms = StringProperty(name="",
Campbell Barton's avatar
Campbell Barton committed
        default="Number", description = "This output shows "
        "the number of atoms which have been loaded")
    scn.atom_pdb_distance = StringProperty(
        name="", default="Distance (A)",
        description="Distance of 2 objects in Angstrom")
Campbell Barton's avatar
Campbell Barton committed
    scn.atom_pdb_radius_how = EnumProperty(
        name="",
        description="Which objects shall be modified?",
        items=(('ALL_ACTIVE',"all active objects", "in the current layer"),
               ('ALL_IN_LAYER',"all"," in active layer(s)")),
               default='ALL_ACTIVE',)
    scn.atom_pdb_radius_type = EnumProperty(
Campbell Barton's avatar
Campbell Barton committed
        name="Type",
        description="Which type of atom radii?",
        items=(('0',"predefined", "Use pre-defined radii"),
               ('1',"atomic", "Use atomic radii"),
Campbell Barton's avatar
Campbell Barton committed
               ('2',"van der Waals","Use van der Waals radii")),
               default='0',update=Callback_radius_type)
Campbell Barton's avatar
Campbell Barton committed
    scn.atom_pdb_radius_pm_name = StringProperty(
        name="", default="Atom name",
Campbell Barton's avatar
Campbell Barton committed
        description="Put in the name of the atom (e.g. Hydrogen)")
    scn.atom_pdb_radius_pm = FloatProperty(
        name="", default=100.0, min=0.0,
        description="Put in the radius of the atom (in pm)",
Campbell Barton's avatar
Campbell Barton committed
        update=Callback_radius_pm)
    scn.atom_pdb_radius_all = FloatProperty(
        name="Scale", default = 1.05, min=1.0,
Campbell Barton's avatar
Campbell Barton committed
        description="Put in the scale factor")
Campbell Barton's avatar
Campbell Barton committed
# Button loading a custom data file
class CLASS_atom_pdb_datafile_apply(Operator):
Campbell Barton's avatar
Campbell Barton committed
    bl_idname = "atom_pdb.datafile_apply"
    bl_label = "Apply"
Clemens Barth's avatar
 
Clemens Barth committed
    bl_description = "Use color and radii values stored in the custom file"
Campbell Barton's avatar
Campbell Barton committed

    def execute(self, context):
        scn    = bpy.context.scene

Campbell Barton's avatar
Campbell Barton committed
        if scn.atom_pdb_datafile == "":
Campbell Barton's avatar
Campbell Barton committed
        import_pdb.DEF_atom_pdb_custom_datafile(scn.atom_pdb_datafile)

        # TODO, move this into 'import_pdb' and call the function
Campbell Barton's avatar
Campbell Barton committed
        for obj in bpy.context.selected_objects:
            if len(obj.children) != 0:
                child = obj.children[0]
                if child.type == "SURFACE" or child.type  == "MESH":
                    for element in import_pdb.ATOM_PDB_ELEMENTS:
Campbell Barton's avatar
Campbell Barton committed
                        if element.name in obj.name:
                            child.scale = (element.radii[0],) * 3
Campbell Barton's avatar
Campbell Barton committed
                            child.active_material.diffuse_color = element.color
            else:
                if obj.type == "SURFACE" or obj.type == "MESH":
                    for element in import_pdb.ATOM_PDB_ELEMENTS:
Campbell Barton's avatar
Campbell Barton committed
                        if element.name in obj.name:
                            obj.scale = (element.radii[0],) * 3
Campbell Barton's avatar
Campbell Barton committed
                            obj.active_material.diffuse_color = element.color
Clemens Barth's avatar
 
Clemens Barth committed
# Button for separating single objects from a atom mesh
class CLASS_atom_pdb_separate_atom(Operator):
Campbell Barton's avatar
Campbell Barton committed
    bl_idname = "atom_pdb.separate_atom"
    bl_label = "Separate atom"
    bl_description = "Separate the atom you have chosen"

    def execute(self, context):
        scn    = bpy.context.scene
Campbell Barton's avatar
Campbell Barton committed
        # Get first all important properties from the atom which the user
        # has chosen: location, color, scale
        obj = bpy.context.edit_object
        name = obj.name
        loc_obj_vec = obj.location
Campbell Barton's avatar
Campbell Barton committed
        scale = obj.children[0].scale
        material = obj.children[0].active_material

Campbell Barton's avatar
Campbell Barton committed
        # Separate the vertex from the main mesh and create a new mesh.
        bpy.ops.mesh.separate()
        new_object = bpy.context.scene.objects[0]
        # Keep in mind the coordinates <= We only need this
        loc_vec = new_object.data.vertices[0].co
Campbell Barton's avatar
Campbell Barton committed
        # And now, switch to the OBJECT mode such that we can ...
        bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
Campbell Barton's avatar
Campbell Barton committed
        # ... delete the new mesh including the separated vertex
        bpy.ops.object.select_all(action='DESELECT')
Campbell Barton's avatar
Campbell Barton committed
        new_object.select = True
        bpy.ops.object.delete()  # TODO, use scene.objects.unlink()
Campbell Barton's avatar
Campbell Barton committed

        # Create a new atom/vacancy at the position of the old atom
        current_layers=bpy.context.scene.layers

Campbell Barton's avatar
Campbell Barton committed
        if "Vacancy" not in name:
            if scn.use_atom_pdb_mesh == False:
                bpy.ops.surface.primitive_nurbs_surface_sphere_add(
                                    view_align=False, enter_editmode=False,
                                    location=loc_vec+loc_obj_vec,
                                    rotation=(0.0, 0.0, 0.0),
                                    layers=current_layers)
Campbell Barton's avatar
Campbell Barton committed
            else:
                bpy.ops.mesh.primitive_uv_sphere_add(
                                segments=scn.atom_pdb_mesh_azimuth,
                                ring_count=scn.atom_pdb_mesh_zenith,
                                size=1, view_align=False, enter_editmode=False,
                                location=loc_vec+loc_obj_vec,
                                rotation=(0, 0, 0),
                                layers=current_layers)
        else:
Campbell Barton's avatar
Campbell Barton committed
            bpy.ops.mesh.primitive_cube_add(
                               view_align=False, enter_editmode=False,
                               location=loc_vec+loc_obj_vec,
                               rotation=(0.0, 0.0, 0.0),
                               layers=current_layers)

Campbell Barton's avatar
Campbell Barton committed
        new_atom = bpy.context.scene.objects.active
        # Scale, material and name it.
        new_atom.scale = scale
        new_atom.active_material = material
        new_atom.name = name + "_sep"
Campbell Barton's avatar
Campbell Barton committed
        # Switch back into the 'Edit mode' because we would like to seprate
        # other atoms may be (more convinient)
        new_atom.select = False
        obj.select = True
        bpy.context.scene.objects.active = obj
        bpy.ops.object.select_all(action='DESELECT')
        bpy.ops.object.mode_set(mode='EDIT', toggle=False)

Campbell Barton's avatar
Campbell Barton committed
        return {'FINISHED'}


# Button for measuring the distance of the active objects
class CLASS_atom_pdb_distance_button(Operator):
Campbell Barton's avatar
Campbell Barton committed
    bl_idname = "atom_pdb.button_distance"
    bl_label = "Measure ..."
Clemens Barth's avatar
 
Clemens Barth committed
    bl_description = "Measure the distance between two objects (only in Object Mode)"
Campbell Barton's avatar
Campbell Barton committed

    def execute(self, context):
        scn    = bpy.context.scene
        dist   = import_pdb.DEF_atom_pdb_distance()

        if dist != "N.A.":
           # The string length is cut, 3 digits after the first 3 digits
           # after the '.'. Append also "Angstrom".
           # Remember: 1 Angstrom = 10^(-10) m
Campbell Barton's avatar
Campbell Barton committed
           pos    = str.find(dist, ".")
           dist   = dist[:pos+4]
Campbell Barton's avatar
Campbell Barton committed
           dist   = dist + " A"

        # Put the distance into the string of the output field.
        scn.atom_pdb_distance = dist
        return {'FINISHED'}


# Button for increasing the radii of all atoms
class CLASS_atom_pdb_radius_all_bigger_button(Operator):
Campbell Barton's avatar
Campbell Barton committed
    bl_idname = "atom_pdb.radius_all_bigger"
    bl_label = "Bigger ..."
    bl_description = "Increase the radii of the atoms"

    def execute(self, context):
        scn = bpy.context.scene
        import_pdb.DEF_atom_pdb_radius_all(
                scn.atom_pdb_radius_all,
Campbell Barton's avatar
Campbell Barton committed
                scn.atom_pdb_radius_how,
                )
        return {'FINISHED'}


# Button for decreasing the radii of all atoms
class CLASS_atom_pdb_radius_all_smaller_button(Operator):
Campbell Barton's avatar
Campbell Barton committed
    bl_idname = "atom_pdb.radius_all_smaller"
    bl_label = "Smaller ..."
    bl_description = "Decrease the radii of the atoms"

    def execute(self, context):
        scn = bpy.context.scene
        import_pdb.DEF_atom_pdb_radius_all(
                1.0/scn.atom_pdb_radius_all,
Campbell Barton's avatar
Campbell Barton committed
                scn.atom_pdb_radius_how,
                )
        return {'FINISHED'}


Clemens Barth's avatar
 
Clemens Barth committed
# Button for showing the sticks only - the radii of the atoms downscaled onto
# 90% of the stick radius
Clemens Barth's avatar
 
Clemens Barth committed
class CLASS_atom_pdb_radius_sticks_button(Operator):
    bl_idname = "atom_pdb.radius_sticks"
    bl_label = "Show sticks"
    bl_description = "Show only the sticks (atom radii = stick radii)"

    def execute(self, context):
Clemens Barth's avatar
 
Clemens Barth committed
        global ATOM_PDB_ERROR
        
Clemens Barth's avatar
 
Clemens Barth committed
        scn = bpy.context.scene
Clemens Barth's avatar
 
Clemens Barth committed
                
        result = import_pdb.DEF_atom_pdb_radius_sticks(
Clemens Barth's avatar
 
Clemens Barth committed
                     scn.atom_pdb_sticks_radius * 0.9,
Clemens Barth's avatar
 
Clemens Barth committed
                     scn.atom_pdb_radius_how,
                     )
Clemens Barth's avatar
 
Clemens Barth committed
                     
        if result == False:
            ATOM_PDB_ERROR = "No sticks => no changes"
            bpy.ops.atom_pdb.error_dialog('INVOKE_DEFAULT')
                                          
Clemens Barth's avatar
 
Clemens Barth committed
        return {'FINISHED'}


# The button for reloading the atoms and creating the scene
class CLASS_atom_pdb_load_button(Operator):
Campbell Barton's avatar
Campbell Barton committed
    bl_idname = "atom_pdb.button_reload"
    bl_label = "RELOAD"
    bl_description = "Load the structure again"
Campbell Barton's avatar
Campbell Barton committed
    def execute(self, context):
        scn = bpy.context.scene

        azimuth    = scn.atom_pdb_mesh_azimuth
        zenith     = scn.atom_pdb_mesh_zenith
Campbell Barton's avatar
Campbell Barton committed
        bradius    = scn.atom_pdb_scale_ballradius
        bdistance  = scn.atom_pdb_scale_distances
        radiustype = scn.atom_pdb_atomradius
        center     = scn.use_atom_pdb_center
        sticks     = scn.use_atom_pdb_sticks
Clemens Barth's avatar
 
Clemens Barth committed
        sticks_col = scn.use_atom_pdb_sticks_color
Clemens Barth's avatar
 
Clemens Barth committed
        sticks_sm  = scn.use_atom_pdb_sticks_smooth
Campbell Barton's avatar
Campbell Barton committed
        ssector    = scn.atom_pdb_sticks_sectors
        sradius    = scn.atom_pdb_sticks_radius
Clemens Barth's avatar
 
Clemens Barth committed
        stick_bond = scn.use_atom_pdb_sticks_bonds
        stick_dist = scn.atom_pdb_sticks_dist
Clemens Barth's avatar
 
Clemens Barth committed
        stick_unit = scn.atom_pdb_sticks_unit_length
Clemens Barth's avatar
 
Clemens Barth committed
        
        cam        = scn.use_atom_pdb_cam
Campbell Barton's avatar
Campbell Barton committed
        lamp       = scn.use_atom_pdb_lamp
        mesh       = scn.use_atom_pdb_mesh
Campbell Barton's avatar
Campbell Barton committed
        datafile   = scn.atom_pdb_datafile
Clemens Barth's avatar
 
Clemens Barth committed
        
        # Execute main routine an other time ... from the panel
Campbell Barton's avatar
Campbell Barton committed
        atom_number = import_pdb.DEF_atom_pdb_main(
Clemens Barth's avatar
 
Clemens Barth committed
                mesh, azimuth, zenith, bradius, radiustype, bdistance, 
Clemens Barth's avatar
 
Clemens Barth committed
                sticks, sticks_col, sticks_sm, stick_bond, stick_unit,
Clemens Barth's avatar
 
Clemens Barth committed
                stick_dist, ssector, sradius, center, cam, lamp, datafile)
Campbell Barton's avatar
Campbell Barton committed
        scn.atom_pdb_number_atoms = str(atom_number) + " atoms"

        return {'FINISHED'}


# This is the class for the file dialog.
class ImportPDB(Operator, ImportHelper):
    bl_idname = "import_mesh.pdb"
Clemens Barth's avatar
 
Clemens Barth committed
    bl_label  = "Import Protein Data Bank(*.pdb)"
Campbell Barton's avatar
Campbell Barton committed
    filename_ext = ".pdb"
    filter_glob  = StringProperty(default="*.pdb", options={'HIDDEN'},)

    def draw(self, context):
        layout = self.layout
Campbell Barton's avatar
Campbell Barton committed
        scn = bpy.context.scene

        row = layout.row()
        row.prop(scn, "use_atom_pdb_cam")
        row.prop(scn, "use_atom_pdb_lamp")
        row = layout.row()
        col = row.column()
Campbell Barton's avatar
Campbell Barton committed
        col.prop(scn, "use_atom_pdb_mesh")
        col = row.column(align=True)
Clemens Barth's avatar
 
Clemens Barth committed
        col.active = scn.use_atom_pdb_mesh
Campbell Barton's avatar
Campbell Barton committed
        col.prop(scn, "atom_pdb_mesh_azimuth")
        col.prop(scn, "atom_pdb_mesh_zenith")

        row = layout.row()
        col = row.column()
Campbell Barton's avatar
Campbell Barton committed
        col.label(text="Scaling factors")
        col = row.column(align=True)
        col.prop(scn, "atom_pdb_scale_ballradius")
        col.prop(scn, "atom_pdb_scale_distances")
Campbell Barton's avatar
Campbell Barton committed
        col = row.column()
        col.prop(scn, "use_atom_pdb_sticks")
Clemens Barth's avatar
 
Clemens Barth committed
        row = layout.row()        
        row.active = scn.use_atom_pdb_sticks
Clemens Barth's avatar
 
Clemens Barth committed
        col = row.column()
Campbell Barton's avatar
Campbell Barton committed
        col.prop(scn, "atom_pdb_sticks_sectors")
        col.prop(scn, "atom_pdb_sticks_radius")
Clemens Barth's avatar
 
Clemens Barth committed
        col.prop(scn, "atom_pdb_sticks_unit_length")
Clemens Barth's avatar
 
Clemens Barth committed
        col = row.column(align=True)        
Clemens Barth's avatar
 
Clemens Barth committed
        col.prop(scn, "use_atom_pdb_sticks_color")        
Clemens Barth's avatar
 
Clemens Barth committed
        col.prop(scn, "use_atom_pdb_sticks_smooth")
        col.prop(scn, "use_atom_pdb_sticks_bonds")
        row = layout.row()        
        row.active = scn.use_atom_pdb_sticks
        col = row.column(align=True)
        col = row.column(align=True)
        col.active = scn.use_atom_pdb_sticks and scn.use_atom_pdb_sticks_bonds 
        col.prop(scn, "atom_pdb_sticks_dist")
Campbell Barton's avatar
Campbell Barton committed

Campbell Barton's avatar
Campbell Barton committed
        row.prop(scn, "use_atom_pdb_center")
Campbell Barton's avatar
Campbell Barton committed
        row.prop(scn, "atom_pdb_atomradius")

    def execute(self, context):
Campbell Barton's avatar
Campbell Barton committed
        scn = bpy.context.scene

        # This is in order to solve this strange 'relative path' thing.
        import_pdb.ATOM_PDB_FILEPATH = bpy.path.abspath(self.filepath)

        scn.atom_pdb_PDB_file = import_pdb.ATOM_PDB_FILEPATH
Campbell Barton's avatar
Campbell Barton committed
        azimuth    = scn.atom_pdb_mesh_azimuth
        zenith     = scn.atom_pdb_mesh_zenith
Campbell Barton's avatar
Campbell Barton committed
        bradius    = scn.atom_pdb_scale_ballradius
        bdistance  = scn.atom_pdb_scale_distances
        radiustype = scn.atom_pdb_atomradius
        center     = scn.use_atom_pdb_center
        sticks     = scn.use_atom_pdb_sticks
Clemens Barth's avatar
 
Clemens Barth committed
        sticks_col = scn.use_atom_pdb_sticks_color
Clemens Barth's avatar
 
Clemens Barth committed
        sticks_sm  = scn.use_atom_pdb_sticks_smooth
Campbell Barton's avatar
Campbell Barton committed
        ssector    = scn.atom_pdb_sticks_sectors
        sradius    = scn.atom_pdb_sticks_radius
Clemens Barth's avatar
 
Clemens Barth committed
        stick_bond = scn.use_atom_pdb_sticks_bonds
        stick_dist = scn.atom_pdb_sticks_dist
Clemens Barth's avatar
 
Clemens Barth committed
        stick_unit = scn.atom_pdb_sticks_unit_length
Clemens Barth's avatar
 
Clemens Barth committed
                
        cam        = scn.use_atom_pdb_cam
Campbell Barton's avatar
Campbell Barton committed
        lamp       = scn.use_atom_pdb_lamp
        mesh       = scn.use_atom_pdb_mesh
Campbell Barton's avatar
Campbell Barton committed
        datafile   = scn.atom_pdb_datafile
Clemens Barth's avatar
 
Clemens Barth committed
        
        # Execute main routine
Campbell Barton's avatar
Campbell Barton committed
        atom_number = import_pdb.DEF_atom_pdb_main(
Clemens Barth's avatar
 
Clemens Barth committed
                mesh, azimuth, zenith, bradius, radiustype, bdistance, 
Clemens Barth's avatar
 
Clemens Barth committed
                sticks, sticks_col, sticks_sm, stick_bond, stick_unit,
Clemens Barth's avatar
 
Clemens Barth committed
                stick_dist, ssector, sradius, center, cam, lamp, datafile)
Campbell Barton's avatar
Campbell Barton committed

        scn.atom_pdb_number_atoms = str(atom_number) + " atoms"

        return {'FINISHED'}



# This is the class for the file dialog.
class ExportPDB(Operator, ExportHelper):
    bl_idname = "export_mesh.pdb"
    bl_label  = "Export Protein Data Bank(*.pdb)"

    filename_ext = ".pdb"
    filter_glob  = StringProperty(default="*.pdb", options={'HIDDEN'},)

    def draw(self, context):
        layout = self.layout
        scn = bpy.context.scene

Clemens Barth's avatar
 
Clemens Barth committed
        row = layout.row()
        row.prop(scn, "atom_pdb_export_type")

    def execute(self, context):
        scn = bpy.context.scene

        # This is in order to solve this strange 'relative path' thing.
        export_pdb.ATOM_PDB_FILEPATH = bpy.path.abspath(self.filepath)
Clemens Barth's avatar
 
Clemens Barth committed
        export_pdb.DEF_atom_pdb_export(scn.atom_pdb_export_type)
Clemens Barth's avatar
 
Clemens Barth committed
class CLASS_atom_pdb_error_dialog(bpy.types.Operator):
    bl_idname = "atom_pdb.error_dialog"
    bl_label = "Attention !"
    
    def draw(self, context):
        layout = self.layout
        row = layout.row()
        row.label(text="                          "+ATOM_PDB_ERROR) 
    def execute(self, context):
        print("Atomic Blender - Error: "+ATOM_PDB_ERROR+"\n")
        return {'FINISHED'}
    def invoke(self, context, event):
        return context.window_manager.invoke_props_dialog(self)


Campbell Barton's avatar
Campbell Barton committed
# The entry into the menu 'file -> import'
    self.layout.operator(ImportPDB.bl_idname, text="Protein Data Bank (.pdb)")
Campbell Barton's avatar
Campbell Barton committed

# The entry into the menu 'file -> export'
def menu_func_export(self, context):
    self.layout.operator(ExportPDB.bl_idname, text="Protein Data Bank (.pdb)")

Campbell Barton's avatar
Campbell Barton committed

def register():
    bpy.utils.register_module(__name__)
    bpy.types.INFO_MT_file_import.append(menu_func_import)
    bpy.types.INFO_MT_file_export.append(menu_func_export)
Campbell Barton's avatar
Campbell Barton committed

def unregister():
    bpy.utils.unregister_module(__name__)
    bpy.types.INFO_MT_file_import.remove(menu_func_import)
    bpy.types.INFO_MT_file_export.remove(menu_func_export)
Campbell Barton's avatar
Campbell Barton committed
if __name__ == "__main__":
Campbell Barton's avatar
Campbell Barton committed
    register()