-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2122063
commit b4abe71
Showing
21 changed files
with
3,662 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
История версий: | ||
|
||
20.04.2012: | ||
- Опубликован исходный код под лицензией GNU General Public License v3.0 | ||
01.02.2012 beta: | ||
- Добавлена возможность редактирования монстров | ||
- Бета версия (две неизвестные характеристики монстров в процессе изучения) | ||
24.01.2012: | ||
- Изменён фильтр в диалоге открытия файла | ||
- Улучшен интерфейс (скроллинг заменили на вкладки) | ||
- Добавили кнопку сворачивания | ||
- Изменены некоторые надписи | ||
- Для компактности сгруппировали некоторые элементы окна | ||
upd 25.01.2012 02:25 | ||
- Внесено ещё несколько корректировок в интерфейс | ||
23.01.2012: | ||
- Исправлена одна грамматическая и несколько смысловых ошибок | ||
21.01.2012: | ||
- Программа переименована в Doom2D DeHacker by Stas'M, наподобие похожей по функционалу программы DeHackEd для оригинального Doom-а. | ||
- Благодаря замечаниям и предложениям от Чёрного Думера, был подкорректирован интерфейс программы | ||
- Теперь есть две кнопки: Сохранить и Сохранить как... | ||
- Добавлена возможность изменять звук при использовании чита IDDQD | ||
20.01.2012: | ||
- Стабильная версия | ||
- Реализован желаемый минимальный функционал | ||
- Багов в работе программы обнаружено не было | ||
17.01.2012: | ||
- Первый релиз (нестабильная версия) | ||
- На сайте опубликован не был |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# D2DeHacker | ||
Doom2D DeHacker by Stas'M | ||
# Doom2D DeHacker by Stas'M | ||
Программа предназначена для изменения стандартных значений в игре Doom2D, тем самым позволяя создавать различные модификации игры. Пока что возможность вносить изменения доступна только для версии 1.30, но в ближайшем будущем по мере исследования версии 1.40 будет реализована поддержка и для неё. Создана специально для doom2d.org. Open Source продукт под GPL v3.0 лицензией. | ||
|
||
Обсуждение на форуме: http://doom2d.org/forum/viewtopic.php?f=8&t=882 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
program D2DeHacker; | ||
{ | ||
Doom2D DeHacker | ||
Copyright (C) 2012 Stas'M Corp. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/> | ||
} | ||
uses | ||
Forms, | ||
Unit1 in 'Unit1.pas' {MainForm}, | ||
Unit2 in 'Unit2.pas' {FAbout}; | ||
|
||
{$R *.res} | ||
|
||
begin | ||
Application.Initialize; | ||
Application.MainFormOnTaskbar := True; | ||
Application.Title := 'Doom2D DeHacker'; | ||
Application.CreateForm(TMainForm, MainForm); | ||
Application.CreateForm(TFAbout, FAbout); | ||
Application.Run; | ||
end. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ProjectGuid>{7AE7FF8D-E337-4DD9-9970-E4D942AC5651}</ProjectGuid> | ||
<ProjectVersion>12.0</ProjectVersion> | ||
<MainSource>D2DeHacker.dpr</MainSource> | ||
<Config Condition="'$(Config)'==''">Release</Config> | ||
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''"> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''"> | ||
<Cfg_1>true</Cfg_1> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''"> | ||
<Cfg_2>true</Cfg_2> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base)'!=''"> | ||
<DCC_ExeOutput>..\bin\</DCC_ExeOutput> | ||
<DCC_ImageBase>00400000</DCC_ImageBase> | ||
<DCC_UsePackage>vclx;vcl;vclimg;dbrtl;Rave77VCL;bdertl;rtl;vclactnband;xmlrtl;vcldb;vcldbx;vcltouch;dsnap;dsnapcon;TeeUI;TeeDB;Tee;vclib;ibxpress;adortl;IndyCore;IndySystem;IndyProtocols;inet;intrawebdb_100_140;Intraweb_100_140;VclSmp;vclie;websnap;webdsnap;inetdb;inetdbbde;inetdbxpress;soaprtl;vclribbon;dbexpress;DbxCommonDriver;DataSnapIndy10ServerTransport;DataSnapProviderClient;DbxClientDriver;DataSnapServer;DBXInterBaseDriver;DBXMySQLDriver;dbxcds;DBXFirebirdDriver;DBXSybaseASEDriver;DBXSybaseASADriver;DBXOracleDriver;DBXMSSQLDriver;DBXInformixDriver;DBXDb2Driver;SWFlash;mstscax;rdpencom</DCC_UsePackage> | ||
<DCC_DependencyCheckOutputName>..\bin\D2DeHacker.exe</DCC_DependencyCheckOutputName> | ||
<DCC_UnitAlias>WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;$(DCC_UnitAlias)</DCC_UnitAlias> | ||
<DCC_Platform>x86</DCC_Platform> | ||
<DCC_N>false</DCC_N> | ||
<DCC_S>false</DCC_S> | ||
<DCC_K>false</DCC_K> | ||
<DCC_E>false</DCC_E> | ||
<DCC_F>false</DCC_F> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_1)'!=''"> | ||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols> | ||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define> | ||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo> | ||
<DCC_DebugInformation>false</DCC_DebugInformation> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_2)'!=''"> | ||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<DelphiCompile Include="D2DeHacker.dpr"> | ||
<MainSource>MainSource</MainSource> | ||
</DelphiCompile> | ||
<DCCReference Include="Unit1.pas"> | ||
<Form>MainForm</Form> | ||
</DCCReference> | ||
<DCCReference Include="Unit2.pas"> | ||
<Form>FAbout</Form> | ||
</DCCReference> | ||
<BuildConfiguration Include="Base"> | ||
<Key>Base</Key> | ||
</BuildConfiguration> | ||
<BuildConfiguration Include="Release"> | ||
<Key>Cfg_1</Key> | ||
<CfgParent>Base</CfgParent> | ||
</BuildConfiguration> | ||
<BuildConfiguration Include="Debug"> | ||
<Key>Cfg_2</Key> | ||
<CfgParent>Base</CfgParent> | ||
</BuildConfiguration> | ||
</ItemGroup> | ||
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/> | ||
<ProjectExtensions> | ||
<Borland.Personality>Delphi.Personality.12</Borland.Personality> | ||
<Borland.ProjectType/> | ||
<BorlandProject> | ||
<Delphi.Personality> | ||
<Parameters> | ||
<Parameters Name="UseLauncher">False</Parameters> | ||
<Parameters Name="LoadAllSymbols">True</Parameters> | ||
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters> | ||
</Parameters> | ||
<VersionInfo> | ||
<VersionInfo Name="IncludeVerInfo">True</VersionInfo> | ||
<VersionInfo Name="AutoIncBuild">False</VersionInfo> | ||
<VersionInfo Name="MajorVer">1</VersionInfo> | ||
<VersionInfo Name="MinorVer">0</VersionInfo> | ||
<VersionInfo Name="Release">2</VersionInfo> | ||
<VersionInfo Name="Build">2012</VersionInfo> | ||
<VersionInfo Name="Debug">False</VersionInfo> | ||
<VersionInfo Name="PreRelease">False</VersionInfo> | ||
<VersionInfo Name="Special">False</VersionInfo> | ||
<VersionInfo Name="Private">False</VersionInfo> | ||
<VersionInfo Name="DLL">False</VersionInfo> | ||
<VersionInfo Name="Locale">1049</VersionInfo> | ||
<VersionInfo Name="CodePage">1251</VersionInfo> | ||
</VersionInfo> | ||
<VersionInfoKeys> | ||
<VersionInfoKeys Name="CompanyName">Stas'M Corp.</VersionInfoKeys> | ||
<VersionInfoKeys Name="FileDescription">Doom2D DeHacker</VersionInfoKeys> | ||
<VersionInfoKeys Name="FileVersion">1.0.2.2012</VersionInfoKeys> | ||
<VersionInfoKeys Name="InternalName">D2DeHacker</VersionInfoKeys> | ||
<VersionInfoKeys Name="LegalCopyright">Copyright © Stas'M Corp. 2012</VersionInfoKeys> | ||
<VersionInfoKeys Name="LegalTrademarks">Stas'M Corp.</VersionInfoKeys> | ||
<VersionInfoKeys Name="OriginalFilename">D2DeHacker.exe</VersionInfoKeys> | ||
<VersionInfoKeys Name="ProductName">Doom2D DeHacker (специально для doom2d.org)</VersionInfoKeys> | ||
<VersionInfoKeys Name="ProductVersion">Сборка 01.02.2012 beta</VersionInfoKeys> | ||
<VersionInfoKeys Name="Comments">http://stascorp.com</VersionInfoKeys> | ||
</VersionInfoKeys> | ||
<Source> | ||
<Source Name="MainSource">D2DeHacker.dpr</Source> | ||
</Source> | ||
<Excluded_Packages> | ||
<Excluded_Packages Name="$(BDS)\bin\bcboffice2k140.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages> | ||
<Excluded_Packages Name="$(BDS)\bin\bcbofficexp140.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages> | ||
<Excluded_Packages Name="$(BDS)\bin\dcloffice2k140.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages> | ||
<Excluded_Packages Name="$(BDS)\bin\dclofficexp140.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages> | ||
</Excluded_Packages> | ||
</Delphi.Personality> | ||
</BorlandProject> | ||
<ProjectFileVersion>12</ProjectFileVersion> | ||
</ProjectExtensions> | ||
</Project> |
Binary file not shown.
Oops, something went wrong.