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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
|
#!/usr/bin/env ruby
#--
# This file is part of Sonic Pi: http://sonic-pi.net
# Full project source: https://github.com/samaaron/sonic-pi
# License: https://github.com/samaaron/sonic-pi/blob/master/LICENSE.md
#
# Copyright 2013, 2014, 2015, 2016 by Sam Aaron (http://sam.aaron.name).
# All rights reserved.
#
# Permission is granted for use, copying, modification, and
# distribution of modified versions of this work as long as this
# notice is included.
#++
require 'cgi'
require 'optparse'
require 'fileutils'
require_relative "../core.rb"
require_relative "../sonicpi/lib/sonicpi/synths/synthinfo"
require_relative "../sonicpi/lib/sonicpi/util"
require_relative "../sonicpi/lib/sonicpi/runtime"
require_relative "../sonicpi/lib/sonicpi/lang/sound"
require_relative "../sonicpi/lib/sonicpi/lang/minecraftpi"
require 'active_support/inflector'
include SonicPi::Util
FileUtils::rm_rf "#{qt_gui_path}/help/"
FileUtils::mkdir "#{qt_gui_path}/help/"
FileUtils::rm_rf "#{qt_gui_path}/info/"
FileUtils::mkdir "#{qt_gui_path}/info/"
FileUtils::rm_rf "#{qt_gui_path}/book/"
FileUtils::mkdir "#{qt_gui_path}/book/"
docs = []
filenames = []
booknames = []
count = 0
options = {}
OptionParser.new do |opts|
opts.banner = "Usage: qt-doc.rb [options]"
opts.on('-o', '--output NAME', 'Output filename') { |v| options[:output_name] = v }
end.parse!
# valid names: lang, synths, fx, samples, examples
make_tab = lambda do |name, doc_items, titleize=false, should_sort=true, with_keyword=false, page_break=false, chapters=false, lang="en"|
return if doc_items.empty?
list_widget = "#{name}NameList"
layout = "#{name}Layout"
tab_widget = "#{name}TabWidget"
help_pages = "#{name}HelpPages"
docs << "\n"
docs << " // #{name} info\n"
docs << " struct help_page #{help_pages}[] = {\n"
doc_items = doc_items.sort if should_sort
book = ""
toc = "<ul class=\"toc\">\n"
toc_level = 0
doc_items.each do |n, doc|
title = n
if titleize == :titleize then
title = ActiveSupport::Inflector.titleize(title)
# HPF et al get capitalized
if name == 'fx' and title =~ /pf$/ then
title = title.upcase
end
end
item_var = "#{name}_item_#{count+=1}"
filename = "help/#{item_var}.html"
if title.start_with?(" ") then
if toc_level == 0 then
toc << "<ul class=\"toc\">\n"
toc_level += 1
end
else
if toc_level == 1 then
toc << "</ul>\n"
toc_level -= 1
end
end
toc << "<li><a href=\"\##{item_var}\">#{title}</a></li>\n"
docs << " { "
docs << "QString::fromUtf8(" unless title.ascii_only?
docs << "\"#{title}\""
docs << ")" unless title.ascii_only?
docs << ", "
if with_keyword then
docs << "\"#{n.downcase}\""
else
docs << "NULL"
end
docs << ", "
docs << "\"qrc:///#{filename}\""
docs << "},\n"
filenames << filename
File.open("#{qt_gui_path}/#{filename}", 'w') do |f|
f << "#{doc}"
end
if chapters then
c = title[/\A\s*[0-9]+(\.[0-9]+)?/]
doc.gsub!(/(<h1.*?>)/, "\\1#{c} - ")
end
if page_break then
doc.gsub!(/<h1.*?>/, "<h1 id=\"#{item_var}\" style=\"page-break-before: always;\">")
else
doc.gsub!(/<h1.*?>/, "<h1 id=\"#{item_var}\">")
end
book << doc
book << "<hr/>\n"
end
while toc_level >= 0 do
toc << "</ul>\n"
toc_level -= 1
end
book_body = book[/<body.*?>/]
book.gsub!(/<\/?body.*?>/, '')
book.gsub!(/<meta http-equiv.*?>/, '')
bookname = "Sonic Pi - #{name.capitalize}" + (lang != "en" ? " (#{lang})" : "")
booknames << bookname
File.open("#{qt_gui_path}/book/#{bookname}.html", 'w') do |f|
f << "<link rel=\"stylesheet\" href=\"../theme/light/doc-styles.css\" type=\"text/css\"/>\n"
f << "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n\n"
f << book_body << "\n"
f << toc << "\n"
f << book << "\n"
f << "</body>\n"
end
docs << " };\n\n"
docs << " addHelpPage(createHelpTab(tr(\"#{name.capitalize}\")), #{help_pages}, #{doc_items.length});\n\n"
docs
end
make_tutorial = lambda do |lang|
docs << "\n // language #{lang}\n"
tutorial_html_map = {}
Dir["#{tutorial_path}/#{lang}/*.md"].sort.each do |path|
f = File.open(path, 'r:UTF-8')
# read first line (title) of the markdown, use as title
name = f.readline.strip
# indent subchapters
name = " #{name}" if name.match(/\A[A-Z0-9]+\.[0-9]+ /)
# read remaining content of markdown
markdown = f.read
html = SonicPi::MarkdownConverter.convert markdown
tutorial_html_map[name] = html
end
make_tab.call("tutorial", tutorial_html_map, false, false, false, true, true, lang)
end
example_html_map = {}
example_dirs = ["Apprentice", "Illusionist", "Magician", "Sorcerer", "Wizard", "Algomancer"]
example_dirs.each do |ex_dir|
Dir["#{examples_path}/#{ex_dir.downcase}/*.rb"].each do |path|
bname = File.basename(path, ".rb")
bname = ActiveSupport::Inflector.titleize(bname)
name = "[#{ex_dir}] #{bname}"
lines = IO.readlines(path).map(&:chop).map{|s| CGI.escapeHTML(s)}
html = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n\n"
html << "<body class=\"example\">\n"
html << '<h1>'
html << "# #{bname}"
html << '</h1>'
html << "<p><pre><code>\n"
html << "#{lines.join("\n")}\n\n</code></pre></p>\n"
html << "</body>\n"
example_html_map[name] = html
end
end
ruby_html_map = {
# "n.times" => "Loop n times",
# "loop" => "Loop forever",
}
# this will sort locale code names by reverse length
# to make sure that a more specific locale is handled
# before the generic language code,
# e.g., "de_CH" should be handled before "de"
languages = Dir.
glob("#{tutorial_path}/*").
select {|f| File.directory? f}.
map {|f| File.basename f}.
select {|n| n != "en"}.
sort_by {|n| -n.length}
docs << "\n QString systemLocale = QLocale::system().name();\n\n" unless languages.empty?
# first, try to match all non-default languages (those that aren't "en")
languages.each do |lang|
docs << "if (systemLocale.startsWith(\"#{lang}\")) {\n"
make_tutorial.call(lang)
docs << "} else "
end
# finally, add the default language ("en")
docs << "{\n" unless (languages.empty?)
make_tutorial.call("en")
docs << "}\n" unless (languages.empty?)
make_tab.call("examples", example_html_map, false, false, false, true)
make_tab.call("synths", SonicPi::Synths::SynthInfo.synth_doc_html_map, :titleize, true, true, true)
make_tab.call("fx", SonicPi::Synths::SynthInfo.fx_doc_html_map, :titleize, true, true, true)
make_tab.call("samples", SonicPi::Synths::SynthInfo.samples_doc_html_map, false, true, false, true)
make_tab.call("lang", SonicPi::Lang::Core.docs_html_map.merge(SonicPi::Lang::Sound.docs_html_map).merge(ruby_html_map), false, true, true, false)
docs << " // FX arguments for autocompletion\n"
docs << " QStringList fxtmp;\n"
SonicPi::Synths::SynthInfo.get_all.each do |k, v|
next unless v.is_a? SonicPi::Synths::FXInfo
next if (k.to_s.include? 'replace_')
safe_k = k.to_s[3..-1]
docs << " // fx :#{safe_k}\n"
docs << " fxtmp.clear(); fxtmp "
v.arg_info.each do |ak, av|
docs << "<< \"#{ak}:\" ";
end
docs << ";\n"
docs << " autocomplete->addFXArgs(\":#{safe_k}\", fxtmp);\n\n"
end
SonicPi::Synths::SynthInfo.get_all.each do |k, v|
next unless v.is_a? SonicPi::Synths::SynthInfo
docs << " // synth :#{k}\n"
docs << " fxtmp.clear(); fxtmp "
v.arg_info.each do |ak, av|
docs << "<< \"#{ak}:\" ";
end
docs << ";\n"
docs << " autocomplete->addSynthArgs(\":#{k}\", fxtmp);\n\n"
end
# update ruby_help.h
if options[:output_name] then
cpp = options[:output_name]
else
cpp = "#{qt_gui_path}/ruby_help.h"
end
content = File.readlines(cpp)
new_content = content.take_while { |line| !line.start_with?("// AUTO-GENERATED-DOCS")}
new_content << "// AUTO-GENERATED-DOCS\n"
new_content << "// Do not manually add any code below this comment\n"
new_content << "// otherwise it may be removed\n"
new_content << "\n"
new_content << "void MainWindow::initDocsWindow() {\n"
new_content += docs
new_content << "}\n"
File.open(cpp, 'w') do |f|
f << new_content.join
end
File.open("#{qt_gui_path}/help_files.qrc", 'w') do |f|
f << "<RCC>\n <qresource prefix=\"/\">\n"
f << filenames.map{|n| " <file>#{n}</file>\n"}.join
f << " </qresource>\n</RCC>\n"
end
File.open("#{qt_gui_path}/book/index.html", 'w') do |f|
f << "<link rel=\"stylesheet\" href=\"../theme/light/doc-styles.css\" type=\"text/css\"/>\n"
f << "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n\n"
f << "<body><ul>\n"
f << booknames.sort.map{|n| "<li><a href=\"#{n}.html\">#{n}</a></li>\n"}.join
f << "</ul></body>\n"
end
###
# Generate info pages
###
info_sources = ["CHANGELOG.md", "CONTRIBUTORS.md", "COMMUNITY.md", "CORETEAM.html", "LICENSE.md"]
outputdir = "#{qt_gui_path}/info"
info_sources.each do |src|
input_path = "#{root_path}/#{src}"
base = File.basename(input_path)
m = base.match /(.*)\.(.*)/
bn = m[1]
ext = m[2]
input = IO.read(input_path, :encoding => 'utf-8')
if ext == "md"
html = SonicPi::MarkdownConverter.convert(input)
else
html = SonicPi::MarkdownConverter.massage!(input)
end
output_path = "#{outputdir}/#{bn}.html"
File.open(output_path, 'w') do |f|
f << html
end
end
|