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
|
// Copyright 2009-2020 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include "../default.h"
namespace embree
{
void waitForKeyPressedUnderWindows();
class Application
{
public:
enum Features { FEATURE_RTCORE = 1, FEATURE_STREAM = 2 };
Application (int features);
virtual ~Application();
static Application* instance;
/* virtual interface for command line option processing */
struct CommandLineOption : public RefCount
{
public:
CommandLineOption (const std::string& description)
: description(description) {}
virtual void parse(Ref<ParseStream> cin, const FileName& path) = 0;
public:
std::string description;
};
/* helper class to provide parsing function via lambda function */
template<typename F>
struct CommandLineOptionClosure : public CommandLineOption
{
CommandLineOptionClosure (std::string description, const F& f)
: CommandLineOption(description), f(f) {}
virtual void parse(Ref<ParseStream> cin, const FileName& path) {
f(cin,path);
}
public:
F f;
};
/* registers a command line option */
template<typename F>
void registerOption(const std::string& name, const F& f, const std::string& description)
{
Ref<CommandLineOption> closure = new CommandLineOptionClosure<F>(description,f);
commandLineOptionList.push_back(closure);
commandLineOptionMap[name] = closure;
}
/* registers an alias for a command line option */
void registerOptionAlias(const std::string& name, const std::string& alternativeName);
/* command line parsing */
void parseCommandLine(int argc, char** argv);
void parseCommandLine(Ref<ParseStream> cin, const FileName& path);
/* prints help for all supported command line options */
void printCommandLineHelp();
/* print log message */
void log(int verbose, const std::string& str);
/* command line options database */
public:
std::vector< Ref<CommandLineOption> > commandLineOptionList;
std::map<std::string,Ref<CommandLineOption> > commandLineOptionMap;
public:
/* virtual main function, contains all tutorial logic */
virtual int main(int argc, char** argv) = 0;
public:
std::string rtcore; // embree configuration
int verbosity; // verbosity of output
public:
bool log_delta; // whether to print delta stats
double start_time; // start time of application
double last_time; // last log time of application
ssize_t last_virtual_memory; // last virtual memory usage
ssize_t last_resident_memory; // last resident memory usage
};
}
|