about summary refs log tree commit diff stats
path: root/data/maps/the_symbolic/rooms/Poetry Room Left.txtpb
blob: 2d2eb3f1bdea6e87657d7e92b747f41829dfa2fa (plain) (
name: "Poetry Room Left"
panels {
  name: "TRUE"
  path: "Panels/NotNoT/panel5"
  clue: "true"
  answer: "true"
}
panels {
  name: "NOT"
  path: "Panels/NotNoT/panel6"
  clue: "not"
  answer: "not"
}
panels {
  name: "NOT TRUE"
  path: "Panels/NotNoT/not_true_proxying"
  clue: ""
  answer: "false"
  symbols: EVAL
  symbols: LINGO
  proxies { answer: "false" path: "Panels/NotNoT/not_true_proxied_1" }
  proxies { answer: "rue" path: "Panels/NotNoT/not_true_proxied_2" }
}
class="p">; std::cout << "wordnet :: path to a WordNet prolog data directory" << std::endl; std::cout << "cmudict :: path to a CMUDICT pronunciation file" << std::endl; std::cout << "imagenet :: path to an ImageNet urls.txt file" << std::endl; std::cout << "output :: datafile output path" << std::endl; } int main(int argc, char** argv) { if (argc == 7) { try { verbly::generator::generator app(argv[1], argv[2], argv[3], argv[4], argv[5], argv[6]); try { app.run(); } catch (const std::exception& e) { std::cout << e.what() << std::endl; } } catch (const std::exception& e) { std::cout << e.what() << std::endl; printUsage(); } } else { std::cout << "verbly datafile generator" << std::endl; printUsage(); } }