Welcome to mirror list, hosted at ThFree Co, Russian Federation.

overlap_uvs.py « mesh « oscurart_tools - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b2a893cb3ee51bb0c9992c8a61c6a8ee804e122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# ##### 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 #####

# <pep8 compliant>

import bpy
from mathutils import Vector
from bpy.types import Operator
from bpy.props import (
        IntProperty,
        BoolProperty,
        FloatProperty,
        EnumProperty,
        )


import bmesh

# -------------------------- OVERLAP UV ISLANDS

def defCopyUvsIsland(self, context):
    global islandSet
    islandSet = {}
    islandSet["Loop"] = []

    bpy.context.scene.tool_settings.use_uv_select_sync = True
    bpy.ops.uv.select_linked()
    bm = bmesh.from_edit_mesh(bpy.context.object.data)
    uv_lay = bm.loops.layers.uv.active
    faceSel = 0
    for face in bm.faces:
        if face.select:
            faceSel +=1
            for loop in face.loops:
                islandSet["Loop"].append(loop[uv_lay].uv.copy())
    islandSet["Size"] = faceSel

def defPasteUvsIsland(self, uvOffset, rotateUv,context):
    bm = bmesh.from_edit_mesh(bpy.context.object.data)
    bpy.context.scene.tool_settings.use_uv_select_sync = True
    pickedFaces = [face for face in bm.faces if face.select]
    for face in pickedFaces:
        bpy.ops.mesh.select_all(action="DESELECT")
        face.select=True
        bmesh.update_edit_mesh(bpy.context.object.data)
        bpy.ops.uv.select_linked()
        uv_lay = bm.loops.layers.uv.active
        faceSel = 0
        for face in bm.faces:
            if face.select:
                faceSel +=1
        i = 0
        if faceSel == islandSet["Size"]:
            for face in bm.faces:
                if face.select:
                    for loop in face.loops:
                        loop[uv_lay].uv  = islandSet["Loop"][i] if uvOffset == False else islandSet["Loop"][i]+Vector((1,0))
                        i += 1
        else:
            print("the island have a different size of geometry")

        if rotateUv:
            bpy.ops.object.mode_set(mode="EDIT")
            bmesh.ops.reverse_uvs(bm, faces=[f for f in bm.faces if f.select])
            bmesh.ops.rotate_uvs(bm, faces=[f for f in bm.faces if f.select])

class CopyUvIsland(Operator):
    """Copy Uv Island"""
    bl_idname = "mesh.uv_island_copy"
    bl_label = "Copy Uv Island"
    bl_options = {"REGISTER", "UNDO"}

    @classmethod
    def poll(cls, context):
        return (context.active_object is not None and
                context.active_object.type == 'MESH' and
                context.active_object.mode == "EDIT")

    def execute(self, context):
        defCopyUvsIsland(self, context)
        return {'FINISHED'}

class PasteUvIsland(Operator):
    """Paste Uv Island"""
    bl_idname = "mesh.uv_island_paste"
    bl_label = "Paste Uv Island"
    bl_options = {"REGISTER", "UNDO"}

    uvOffset : BoolProperty(
            name="Uv Offset",
            default=False
            )

    rotateUv : BoolProperty(
            name="Rotate Uv Corner",
            default=False
            )

    @classmethod
    def poll(cls, context):
        return (context.active_object is not None and
                context.active_object.type == 'MESH' and
                context.active_object.mode == "EDIT")

    def execute(self, context):
        defPasteUvsIsland(self, self.uvOffset, self.rotateUv, context)
        return {'FINISHED'}