This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef PATH_H | |
#define PATH_H | |
#include <objects/object.h> | |
class Path : public Object | |
{ | |
public: | |
Path() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef PATHNODE_H | |
#define PATHNODE_H | |
#include <objects/object.h> | |
class PathNode : public Object | |
{ | |
public: | |
PathNode() {} | |
PathNode(FileBase* file, Path* path); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef OBJECT_H | |
#define OBJECT_H | |
#include <QRect> | |
#include <QPainter> | |
class Object | |
{ | |
public: | |
Object(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef LOCATIONEDITORWIDGET_H | |
#define LOCATIONEDITORWIDGET_H | |
#include "objects/object.h" | |
#include <QWidget> | |
#include <QListWidget> | |
#include <QSpinBox> | |
class LocationEditorWidget : public QWidget |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef SPRITERENDERER_H | |
#define SPRITERENDERER_H | |
#include "objects/sprite.h" | |
class SpriteRenderer | |
{ | |
public: | |
SpriteRenderer() {} | |
SpriteRenderer(Sprite* spr); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef SPRITE_H | |
#define SPRITE_H | |
#include "object.h" | |
#include "filesystem/filesystem.h" | |
#include "spriterenderer.h" | |
class Sprite : public Object | |
{ | |
public: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "objectrenderer.h" | |
#include "objects/object.h" | |
#include "leveleditor/imagecache.h" | |
#include <QPainter> | |
SpriteRenderer::SpriteRenderer(const Sprite *spr) | |
{ | |
this->spr = spr; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "helper.h" | |
Helper::Helper(Vector3 scale, Vector3 rot, Vector3 trans) | |
{ | |
this->scale = scale; | |
this->rot = rot; | |
this->trans = trans; | |
} | |
QMatrix4x4 Helper::SRTToMatrix() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Drawing; | |
using System.IO; | |
using System.Windows.Forms; | |
using OpenTK; | |
using OpenTK.Graphics.OpenGL; | |
using DouBOLDash.Rendering; | |
namespace DouBOLDash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# converts an IDA exported MAP to externals.txt for Kamek | |
# Example: | |
# 0001:802342C4 startPause__9RumbleMgrFv | |
# to | |
# startPause__9RumbleMgrFv=0x802342C4 | |
import os, sys | |
if not os.path.exists(sys.argv[1]): |
OlderNewer