rockspec: using md5 from uploaded tarball
[adg-lua.git] / adg-web.lua
blob36487f76c6e531993be2452b207cb35b96db90c5
1 --[[
3 This file is part of adg-lua.
4 Copyright (C) 2012-2013 Nicola Fontana <ntd at entidi.it>
6 adg-lua is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2 of
9 the License, or (at your option) any later version.
11 adg-lua is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General
17 Public License along with adg-lua; if not, write to the Free
18 Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA.
24 -- Convenient function to load scripts from the same directory
25 -- of this very same file
26 local function local_require(filename)
27 local FILE = arg[0]
28 local basedir = FILE and FILE:match('^(.*/).*$') or './'
29 local filename = basedir .. filename .. '.lua'
30 return assert(loadfile(filename)())
31 end
34 local lgi = require 'lgi'
35 local cairo = lgi.require 'cairo'
36 local Adg = lgi.require 'Adg'
37 local Piston = local_require 'piston'
41 -- Command line parsing
42 -----------------------------------------------------------------
45 local request = {}
46 for n, s in ipairs(arg) do
47 -- Arguments are expected in k=v tuples
48 local k, v = s:match('(.-)=(.*)')
49 if not k then error('Invalid argument ' .. n) end
50 request[k] = v
51 end
53 -- Provide fallback values
54 for k, v in pairs {
55 A = 55,
56 B = 20.6,
57 C = 2,
58 DHOLE = 2,
59 LHOLE = 3,
60 D1 = 9.3,
61 D2 = 6.5,
62 D3 = 13.8,
63 D4 = 6.5,
64 D5 = 4.5,
65 D6 = 7.2,
66 D7 = 2,
67 RD34 = 1,
68 RD56 = 0.2,
69 LD2 = 7,
70 LD3 = 3.5,
71 LD5 = 5,
72 LD6 = 1,
73 LD7 = 0.5,
74 GROOVE = false,
75 ZGROOVE = 16,
76 DGROOVE = 8.3,
77 LGROOVE = 1,
78 CHAMFER = 0.3,
80 -- Metadata
81 TITLE = 'SAMPLE DRAWING',
82 DRAWING = 'PISTON',
83 AUTHOR = 'adg-web',
84 DATE = os.date('%d/%m/%Y'),
85 } do
86 if not request[k] then request[k] = v end
87 end
90 -- Part definition
91 -----------------------------------------------------------------
93 local piston = Piston.new(request)
96 -- Canvas settings
97 -----------------------------------------------------------------
99 local n = 1
100 local canvas = piston.view.detailed
101 canvas:set_margins(10, 10, 10, 10)
102 canvas:set_paddings(0, 0, 0, 0)
103 canvas:set_size_explicit(800, 600)
105 -- Adjust the zoom factor based on the (optional) requested size
106 local zoom = 1
107 if request.width then
108 local x_zoom = request.width / 800
109 if x_zoom < zoom then zoom = x_zoom end
111 if request.height then
112 local y_zoom = request.height / 600
113 if y_zoom < zoom then zoom = y_zoom end
115 canvas:set_global_map(cairo.Matrix { xx = zoom, yy = zoom })
117 piston:refresh()
118 canvas:autoscale()
121 -- File generation
122 -----------------------------------------------------------------
124 local _, err = canvas:export('/dev/stdout', 'png')
125 if err then error(err) end