summaryrefslogtreecommitdiff
path: root/gerber/render/cairo_backend.py
blob: d5efc2d20a3cb74d2c410d5e2db08b17f3470156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#! /usr/bin/env python
# -*- coding: utf-8 -*-

# Copyright 2014 Hamilton Kibbe <ham@hamiltonkib.be>

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at

#     http://www.apache.org/licenses/LICENSE-2.0

# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from .render import GerberContext
from .apertures import Circle, Rect, Obround, Polygon
import cairo
import math

SCALE = 200.

class CairoCircle(Circle):
    def line(self, ctx, x, y, color=(184/255., 115/255., 51/255.)):
        ctx.set_source_rgb (*color)
        ctx.set_line_width(self.diameter * SCALE)
        ctx.set_line_cap(cairo.LINE_CAP_ROUND)
        ctx.line_to(x * SCALE, y * SCALE)
        ctx.stroke()
        
    def arc(self, ctx, x, y, i, j, direction, color=(184/255., 115/255., 51/255.)):
        ctx_x, ctx_y = ctx.get_current_point()
        
        # Do the math
        center = ((x + i) * SCALE, (y + j) * SCALE)
        radius = math.sqrt(math.pow(ctx_x - center[0], 2) + math.pow(ctx_y - center[1], 2))
        delta_x0 = (ctx_x - center[0])
        delta_y0 = (ctx_y - center[1])
        delta_x1 = (x * SCALE - center[0])
        delta_y1 = (y * SCALE - center[1])
        theta0 = math.atan2(delta_y0, delta_x0)
        theta1 = math.atan2(delta_y1, delta_x1)
        # Draw the arc
        ctx.set_source_rgb (*color)
        ctx.set_line_width(self.diameter * SCALE)
        ctx.set_line_cap(cairo.LINE_CAP_ROUND)
        if direction == 'clockwise':
            ctx.arc_negative(center[0], center[1], radius, theta0, theta1)
        else:
            ctx.arc(center[0], center[1], radius, theta0, theta1)
        ctx.stroke()

    def flash(self, ctx, x, y, color=(184/255., 115/255., 51/255.)):
        ctx.set_source_rgb (*color)
        ctx.set_line_width(0)
        ctx.arc(x * SCALE, y * SCALE, (self.diameter/2.) * SCALE, 0, 2 * math.pi)
        ctx.fill()

class CairoRect(Rect):
    def line(self, ctx, x, y, color=(184/255., 115/255., 51/255.)):
        ctx.set_source_rgb (*color)
        ctx.set_line_width(self.diameter * SCALE)
        ctx.set_line_cap(cairo.LINE_CAP_SQUARE)
        ctx.line_to(x * SCALE, y * SCALE)
        ctx.stroke()
        
    def flash(self, ctx, x, y, color=(184/255., 115/255., 51/255.)):
        xsize, ysize = self.size
        ctx.set_source_rgb (*color)
        ctx.set_line_width(0)
        x0 = SCALE * (x - (xsize / 2.))
        y0 = SCALE * (y - (ysize / 2.))

        ctx.rectangle(x0,y0,SCALE * xsize, SCALE * ysize)
        ctx.fill()



class GerberCairoContext(GerberContext):
    def __init__(self, surface=None, size=(1000, 1000), 
                 color='rgb(184, 115, 51)', drill_color='gray'):
        GerberContext.__init__(self)
        if surface is None:
            self.surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, 
                                              size[0], size[1])
        else:
             self.surface = surface
        self.ctx = cairo.Context(self.surface)
        self.size = size
        self.ctx.translate(0, self.size[1])
        self.ctx.scale(1,-1)
        self.apertures = {}
        self.color = color
        self.drill_color = drill_color
        self.background = False
        
    def set_bounds(self, bounds):
        xbounds, ybounds = bounds
        self.ctx.rectangle(SCALE * xbounds[0], SCALE * ybounds[0], SCALE * (xbounds[1]- xbounds[0]), SCALE * (ybounds[1] - ybounds[0]))
        self.ctx.set_source_rgb(0,0,0)
        self.ctx.fill()

    def define_aperture(self, d, shape, modifiers):
        aperture = None
        if shape == 'C':
            aperture = CairoCircle(diameter=float(modifiers[0][0]))
        elif shape == 'R':
            aperture = CairoRect(size=modifiers[0][0:2])
        self.apertures[d] = aperture
        
    def stroke(self, x, y, i, j):
        super(GerberCairoContext, self).stroke(x, y, i, j)

        if self.interpolation == 'linear':
            self.line(x, y)
        elif self.interpolation == 'arc':
            self.arc(x, y, i, j)
            self.move(x,y)
            
    def line(self, x, y):
        x, y = self.resolve(x, y)
        ap = self.apertures.get(self.aperture, None)
        if ap is None:
            return
        ap.line(self.ctx, x, y)

    def arc(self, x, y, i, j):
        super(GerberCairoContext, self).arc(x, y, i, j)
        ap = self.apertures.get(self.aperture, None)
        if ap is None:
            return
        ap.arc(self.ctx, x, y, i, j, self.direction)
        
        
    def flash(self, x, y):
        x, y = self.resolve(x, y)
        ap = self.apertures.get(self.aperture, None)
        if ap is None:
            return
        ap.flash(self.ctx, x, y)
        self.move(x, y, resolve=False)
        
    def move(self, x, y, resolve=True):
        super(GerberCairoContext, self).move(x, y, resolve)
        if x is None:
            x = self.x
        if y is None:
            y = self.y
        if self.x is not None and self.y is not None:
            self.ctx.move_to(x * SCALE, y * SCALE)


    def dump(self, filename):
        self.surface.write_to_png(filename)