| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- #include "ff7_field_codegen.h"
- #include "ff7_field_engine.h"
- #include <boost/algorithm/string/predicate.hpp>
- void FF7::FF7CodeGenerator::onBeforeStartFunction(const Function& func)
- {
- // Start class
- FunctionMetaData metaData(func._metadata);
- if (metaData.IsStart())
- {
- addOutputLine("EntityContainer[\"" + metaData.EntityName() + "\"] = {", false, true);
- if (metaData.CharacterId() != -1)
- {
- addOutputLine(metaData.EntityName() + " = nil,");
- }
- addOutputLine("");
- }
- }
- void FF7::FF7CodeGenerator::onStartFunction(const Function& func)
- {
- addOutputLine("--[[");
- for (const auto& inst : mInsts)
- {
- if (inst->_address >= func.mStartAddr && inst->_address <= func.mEndAddr)
- {
- std::stringstream output;
- output << inst;
- addOutputLine(output.str());
- }
- }
- addOutputLine("]]\n");
- }
- void FF7::FF7CodeGenerator::onEndFunction(const Function& func)
- {
- // End function
- addOutputLine("end,", true, false);
-
- // End class
- FunctionMetaData metaData(func._metadata);
- if (metaData.IsEnd())
- {
- addOutputLine("}", true, false);
- }
- }
- std::string FF7::FF7CodeGenerator::constructFuncSignature(const Function &func)
- {
- // Generate name
- return func._name + " = function(self)";
- }
- void FF7::FF7SimpleCodeGenerator::generate(InstVec& insts, const Graph& /*g*/){
- // TODO: Break into parts
- auto instruction = insts.begin();
-
- std::vector<std::pair<Function&, InstVec>> functions_with_bodies;
- for (
- auto function = _engine->_functions.begin();
- function != _engine->_functions.end();
- ++ function
- ){
- InstVec body;
- for (size_t i = 0; i < function->second.mNumInstructions; ++i, ++instruction)
- body.push_back(*instruction);
- functions_with_bodies.push_back(std::pair<Function&, InstVec> {function->second, body});
- }
- for (
- auto function = functions_with_bodies.begin();
- function != functions_with_bodies.end();
- ++ function
- ){
- onBeforeStartFunction(function->first);
- auto signature = constructFuncSignature(function->first);
- addOutputLine(signature, false, true);
- onStartFunction(function->first);
-
- // Comment with original instructions.
- std::unordered_map<uint32, InstVec> labels;
- for (
- auto instruction = function->second.begin();
- instruction != function->second.end();
- ++ instruction
- ){
- if ((*instruction)->isCondJump() || (*instruction)->isUncondJump()){
- auto targetAddr = (*instruction)->getDestAddress();
- auto label = labels.find(targetAddr);
- if (label == labels.end()) labels.insert({targetAddr, InstVec()});
- labels[targetAddr].push_back(*instruction);
- }
- }
- // Implemented instructions.
- bool end_needed = false;
- for (
- auto instruction = function->second.begin();
- instruction != function->second.end();
- ++instruction
- ){
- auto label = labels.find((*instruction)->_address);
- if (label != labels.end()){
- bool needs_label = false;
- bool needs_new_line = false;
- for (auto origin = label->second.begin(); origin != label->second.end(); ++ origin){
- if ((*origin)->isCondJump()){
- addOutputLine("end", true, false);
- needs_new_line = true;
- }
- else needs_label = true;
- }
- if (needs_new_line) addOutputLine("");
- if (needs_label)
- addOutputLine((boost::format("::label_0x%1$X::") % label->first).str());
- }
- ValueStack stack;
- (*instruction)->processInst(function->first, stack, _engine, this);
- if (end_needed){
- addOutputLine("end -- end if", true, false);
- end_needed = false;
- }
- if ((*instruction)->isCondJump()){
- addOutputLine(
- (boost::format("if (%s) then") % stack.pop()->getString()).str(), false, true
- );
- // If the next instruction is the last in the function, mark the next pass to
- // add an 'end' after the instruction to clode the if.
- if ((*(instruction + 1))->_address == (*(function->second.back()))._address)
- end_needed = true;
- }
- else if ((*instruction)->isUncondJump()){
- // If destination address is outside the functions, turn goto into a return.
- if ((*instruction)->getDestAddress() > function->first.mEndAddr){
- addOutputLine(
- "-- Overflowed jump to "
- + (boost::format("0x%1$X") % (*instruction)->getDestAddress()).str()
- + " (last address in function is "
- + (boost::format("0x%1$X)") % function->first.mEndAddr).str()
- );
- addOutputLine("do return 0 end");
- }
- // Prevent backward jumps in the on_start script.
- else if (
- "on_start" == function->first._name
- && (*instruction)->getDestAddress() <= (*instruction)->_address
- ){
- addOutputLine("-- No infinite loops in the on_start script.");
- addOutputLine((
- boost::format("-- goto label_0x%1$X") % (*instruction)->getDestAddress()
- ).str());
- }
- else{
- addOutputLine(
- (boost::format("goto label_0x%1$X") % (*instruction)->getDestAddress()).str()
- );
- }
- }
- // Else, already output'd.
- }
- // Add missing return:
- if (
- "return 0" != mLines.at(mLines.size() - 1)._line
- && "do return 0 end" != mLines.at(mLines.size() - 1)._line
- ){
- addOutputLine("do return 0 end", false, false);
- }
- onEndFunction(function->first);
- }
- for (auto i = mLines.begin(); i != mLines.end(); ++i){
- if (i->_unindentBefore && _indentLevel > 0){
- _indentLevel --;
- }
- _output << indentString(i->_line) << std::endl;
- if (i->_indentAfter) _indentLevel++;
- }
- }
- void FF7::FF7SimpleCodeGenerator::addOutputLine(std::string s, bool unindentBefore, bool indentAfter)
- {
- mLines.push_back(CodeLine(s, unindentBefore, indentAfter));
- }
- float FF7::FF7SimpleCodeGenerator::ScaleFactor() const
- {
- return static_cast<FF7::FF7FieldEngine*>(_engine)->ScaleFactor();
- }
- void FF7::FF7SimpleCodeGenerator::onBeforeStartFunction(const Function& func)
- {
- // Start class
- FunctionMetaData metaData(func._metadata);
- if (metaData.IsStart())
- {
- addOutputLine("EntityContainer[\"" + metaData.EntityName() + "\"] = {", false, true);
- if (metaData.CharacterId() != -1)
- {
- addOutputLine(metaData.EntityName() + " = nil,\n");
- }
- }
- const auto comment = mFormatter.FunctionComment(metaData.EntityName(), func._name);
- if (!comment.empty())
- {
- addOutputLine("-- " + comment);
- }
- }
- void FF7::FF7SimpleCodeGenerator::onStartFunction(const Function& func)
- {
- addOutputLine("--[[");
- for (const auto& inst : mInsts)
- {
- if (inst->_address >= func.mStartAddr && inst->_address <= func.mEndAddr)
- {
- std::stringstream output;
- output << inst;
- addOutputLine(output.str());
- }
- }
- addOutputLine("]]\n");
- if (func._name == "on_start" || func._name == "init")
- {
- addOutputLine("-- HACK ensure camera follows cloud, fix in engine properly later");
- addOutputLine("background2d:autoscroll_to_entity(entity_manager:get_entity(\"Cloud\"))");
- }
-
- }
- void FF7::FF7SimpleCodeGenerator::onEndFunction(const Function& func)
- {
- // End function
- addOutputLine("end,", true, false);
- // End class
- FunctionMetaData metaData(func._metadata);
- if (metaData.IsEnd())
- {
- addOutputLine("}\n\n\n", true, false);
- }
- else
- {
- addOutputLine("\n");
- }
- }
- std::string FF7::FF7SimpleCodeGenerator::constructFuncSignature(const Function &func)
- {
- // Generate name
- FunctionMetaData metaData(func._metadata);
- return mFormatter.FunctionName(metaData.EntityName(), func._name) + " = function(self)";
- }
- const std::string FF7::FF7CodeGeneratorHelpers::FormatInstructionNotImplemented(const std::string& entity, uint32 address, uint32 opcode)
- {
- return (boost::format("-- log:log(\"In entity \\\"%1%\\\", address 0x%2$08x: instruction 0x%3$04x not implemented\")") % entity % address % opcode).str();
- }
- const std::string FF7::FF7CodeGeneratorHelpers::FormatInstructionNotImplemented(const std::string& entity, uint32 address, const Instruction& instruction)
- {
- std::stringstream parameterList;
- for (auto i = instruction._params.begin(); i != instruction._params.end(); ++i)
- {
- if (i != instruction._params.begin())
- {
- parameterList << ", ";
- }
- parameterList << *i;
- }
- return (boost::format("-- log:log(\"In entity \\\"%1%\\\", address 0x%2$08x: instruction %3%(%4%) not implemented\")") % entity % address % instruction._name % parameterList.str()).str();
- }
- const std::string FF7::FF7CodeGeneratorHelpers::FormatBool(uint32 value)
- {
- return value == 0 ? "false" : "true";
- }
- const std::string FF7::FF7CodeGeneratorHelpers::FormatInvertedBool(uint32 value)
- {
- return value == 0 ? "true" : "false";
- }
|