mirror of
https://github.com/sfall-team/int2ssl.git
synced 2026-07-27 16:52:42 -07:00
License header added
This commit is contained in:
@@ -7,13 +7,11 @@ project(int2ssl)
|
||||
set(SOURCES main.cpp
|
||||
Hacks/Types.h
|
||||
Hacks/CArray.h
|
||||
Hacks/CArray.cpp
|
||||
Hacks/CArchive.h
|
||||
Hacks/CArchive.cpp
|
||||
Hacks/CFile.h
|
||||
Hacks/CFile.cpp
|
||||
Hacks/CMap.h
|
||||
Hacks/CMap.cpp
|
||||
FalloutScript.h
|
||||
Namespace.h
|
||||
Node.h
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
// C++ standard includes
|
||||
#include <iostream>
|
||||
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef FALLOUT_SCRIPT_H
|
||||
#define FALLOUT_SCRIPT_H
|
||||
|
||||
|
||||
@@ -1,12 +1,24 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
// C++ standard includes
|
||||
#include <iostream>
|
||||
#include <algorithm>
|
||||
|
||||
// int2ssl includes
|
||||
#include "stdafx.h"
|
||||
#include "FalloutScript.h"
|
||||
#include "ObjectAttributes.h"
|
||||
#include "Utility.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <algorithm>
|
||||
// Third party includes
|
||||
|
||||
// Globals
|
||||
extern bool g_bIgnoreWrongNumOfArgs;
|
||||
extern bool g_bInsOmittedArgsBackward;
|
||||
|
||||
|
||||
@@ -1,6 +1,20 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
// C++ standard includes
|
||||
|
||||
// int2ssl includes
|
||||
#include "stdafx.h"
|
||||
#include "FalloutScript.h"
|
||||
|
||||
// Third party includes
|
||||
|
||||
CFalloutScript::CDefObject::CDefObject(ObjectType type, uint32_t ulAttributes, uint32_t ulObjectData)
|
||||
{
|
||||
m_ulAttributes = ulAttributes;
|
||||
|
||||
@@ -1,7 +1,21 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
// C++ standard includes
|
||||
|
||||
// int2ssl includes
|
||||
#include "stdafx.h"
|
||||
#include "FalloutScript.h"
|
||||
#include "Utility.h"
|
||||
|
||||
// Third party includes
|
||||
|
||||
void CFalloutScript::Dump(CArchive& ar)
|
||||
{
|
||||
ar.WriteString("============== Procedures table ==================\n");
|
||||
|
||||
+14
-3
@@ -1,12 +1,23 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
// C++ standard includes
|
||||
#include <iostream>
|
||||
|
||||
// int2ssl includes
|
||||
#include "stdafx.h"
|
||||
#include "FalloutScript.h"
|
||||
#include "ObjectAttributes.h"
|
||||
|
||||
#include "Utility.h"
|
||||
|
||||
#include <iostream>
|
||||
// Third party includes
|
||||
|
||||
// Globals
|
||||
extern std::string g_strIndentFill;
|
||||
|
||||
void CFalloutScript::StoreTree(CArchive& ar)
|
||||
|
||||
+14
-1
@@ -1,6 +1,19 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
// C++ standard includes
|
||||
#include <iostream>
|
||||
|
||||
// int2ssl includes
|
||||
#include "CArchive.h"
|
||||
|
||||
#include <iostream>
|
||||
// Third party includes
|
||||
|
||||
CArchive::CArchive(CFile* file, unsigned int mode)
|
||||
{
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef CARCHIVE_H
|
||||
#define CARCHIVE_H
|
||||
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
#include "CArray.h"
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef CARRAY_H
|
||||
#define CARRAY_H
|
||||
|
||||
|
||||
+14
-1
@@ -1,6 +1,19 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
// C++ standard includes
|
||||
#include <iostream>
|
||||
|
||||
// int2ssl includes
|
||||
#include "CFile.h"
|
||||
|
||||
#include <iostream>
|
||||
// Third party includes
|
||||
|
||||
CFile::CFile()
|
||||
{
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef CFILE_H
|
||||
#define CFILE_H
|
||||
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
#include "CMap.h"
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef CMAP_H
|
||||
#define CMAP_H
|
||||
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef TYPES_H
|
||||
#define TYPES_H
|
||||
|
||||
|
||||
+12
-8
@@ -1,16 +1,20 @@
|
||||
// Namespace.cpp : implementation file
|
||||
//
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
// C++ standard includes
|
||||
|
||||
// int2ssl includes
|
||||
#include "stdafx.h"
|
||||
#include "Namespace.h"
|
||||
#include "Utility.h"
|
||||
|
||||
#ifdef _DEBUG
|
||||
#define new DEBUG_NEW
|
||||
#endif
|
||||
|
||||
|
||||
// CNamespace
|
||||
// Third party includes
|
||||
|
||||
CNamespace::CNamespace()
|
||||
{
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef NAMESPACE_H
|
||||
#define NAMESPACE_H
|
||||
|
||||
|
||||
@@ -1,7 +1,21 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
// C++ standard includes
|
||||
|
||||
// int2ssl includes
|
||||
#include "stdafx.h"
|
||||
#include "Node.h"
|
||||
#include "Utility.h"
|
||||
|
||||
// Third party includes
|
||||
|
||||
CNode::CNode(Type type) :
|
||||
m_ulOffset(0),
|
||||
m_Type(type)
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
/**
|
||||
*
|
||||
* Copyright (c) 2005-2009 Anchorite (TeamX), <anchorite2001@yandex.ru>
|
||||
* Copyright (c) 20014-2015 Nirran, phobos2077
|
||||
* Copyright (c) 20015 alexeevdv <mail@alexeevdv.ru>
|
||||
* Distributed under the GNU GPL v3. For full terms see the file license.txt
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef NODE_H
|
||||
#define NODE_H
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user