about summary refs log tree commit diff stats
path: root/data/maps/daedalus/rooms/Eye Temple 1F.txtpb
blob: e15afc196643c55d1fff7a64e97ed37b66242ca0 (plain) (blame)
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
name: "Eye Temple 1F"
panel_display_name: "Temple of the Eyes"
paintings {
  name: "EYEREDTOEXITMAIN2"
  path: "Components/Paintings/Temple of the Eyes/eyeRedToExitMain2"
}
paintings {
  name: "EYEREDTOBACKSIDE3"
  path: "Components/Paintings/Temple of the Eyes/eyeRedToBackside3"
}
paintings {
  name: "EYEREDTOPILLAR3"
  path: "Components/Paintings/Temple of the Eyes/eyeRedToPillar3"
}
paintings {
  name: "EYEREDTOPILLAR2"
  path: "Components/Paintings/Temple of the Eyes/eyeRedToPillar2"
}
paintings {
  name: "EYEREDTOPILLAR1"
  path: "Components/Paintings/Temple of the Eyes/eyeRedToPillar1"
}
paintings {
  name: "EYEREDEXITBACKSIDE"
  path: "Components/Paintings/Temple of the Eyes/eyeRedExitBackside"
  exit_only: true
}
span>{ TCLAP::CmdLine cmd("Spelling things with MTG cards", ' ', "1.0"); TCLAP::ValueArg<std::string> cardsPath("c", "cards", "Path to the card definitions file", true, "", "filename"); cmd.add(cardsPath); TCLAP::ValueArg<std::string> cachePath( "i", "image-cache", "Path to store cached card image downloads", true, "", "filename"); cmd.add(cachePath); TCLAP::ValueArg<std::string> outputPath( "o", "output", "Path to write image output to", true, "", "filename"); cmd.add(outputPath); TCLAP::ValueArg<std::string> textInput("t", "text", "Text to render", true, "", "text"); cmd.add(textInput); cmd.parse(argc, argv); cardset cards(cardsPath.getValue()); imagestore images(cachePath.getValue()); wizard app(cards, images, textInput.getValue(), rng); Magick::Image result = app.run(); result.write(outputPath.getValue()); } catch (const TCLAP::ArgException& e) { std::cerr << "Error: " << e.error() << " for arg " << e.argId() << std::endl; } }