Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

Collection of DLLs for DIV Games Studio 2 (vanilla).

License

Notifications You must be signed in to change notification settings

VisualStudioEX3/div2-framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DIV Games Studio 2 logo
DIV2 Framework

© Visual Studio EX3, José Miguel Sánchez Fernández - 2020 - 2022

Collection of DLLs for DIV Games Studio 2

GitHub GitHub release (latest by date)

Note

This repository is only for historical purpose. All this code is migrating to the new project, DIV2 TLSA98 Engine.

Introduction

A little collection of DLLs to extend the DIV Games Studio 2 features and language, designed intially for the StarFighter project but are ready to use in any DIV Games Studio 2 project.

Ready to use:

  • DEBUG.DLL: Adds a print command to print text strings in screen, over the all game render, like on the old BASIC interpreters.
  • MATH.DLL: Extra math functions.
  • RECT.DLL: Functions to make basic operations with rectangles.
  • STRING.DLL: Extra functions to manipulate strings.
  • LOGGER.DLL: Basic logger file system.
  • PROCESS.DLL: Functions to manage DIV processes.
  • TIMER.DLL: Advanced timers.

Unfinished:

  • INPUTMAN.DLL: Advanced input manager based on maps with actions and virtual axis definitions.
  • INIFILE.DLL: Parser to manage INI files.

All source code is documented in formatted code comments. Check header files.

Note

These files are the second iteration of development. A previous version of this collection of DLLs, source code and binaries, are found in the StarFighter repository: https://github.com/VisualStudioEX3/StarFighter/tree/develop/DLL

Warning

These DLLs are designed to work with the original published DIV Games Studio 2 version from 1998. Not guarantee to work in modern forks like Div DX / DIV Games Studio 3 or DIV Games Studio 2.02 because they are not tested on them, and not are suported on forks like Fenix Project (and his variants), eDivc, CDiv, Div GO, Gemix Studio, Bennu GD, or PixTudio.

How to compile

These DLLs are writen in ANSI C-89 using Watcom C++ 10.6. You can download it from Archive.org as abandoneware.

Important

Newer versions of Watcom or Open Watcom fork are not supported or the compiled binaries are not compatible with the expected by DIV Games Studio 2 runtime.

Each DLL project has a file named MAKE.BAT. Run it to compile the DLL. Also, in the root folder, you have another MAKE.BAT that allows you to compile each DLL and perform a cleanup and copy the binary to the DIV Games Studio 2 folder (check the content file to get more information to how setup properly):

MAKE.BAT <folder name>

How to setup Watcom to compile DIV Games Studio DLLs

Note

Watcom C++ 10.6 is supported on current Windows versions (at least on Windows 10).

  1. Start SETUP32.EXE and when the wizard ask you to choice the type of installation select the Selective installation option.
  2. In the next wizard, go to Target operating systems section and select DOS.
  3. Start installation process.

Caution

When the installer ask you to overwrite Windows system files, select on Do not install the new file option, and mark Use the current choice for all subsquent DLLs, to avoid overwrite current ones with older versions that might broken your system.

  1. When is installed, go to the binw folder in your Watcom folder.
  2. Looking for the wlsystem.lnk file and open it in a text editor for edit.
  3. Add these lines at the end (are the content of the DIV_DLL.LNK file):
system begin div_dll
    option osname='DIV DLL'
    libpath %WATCOM%\lib386 
    libpath %WATCOM%\lib386\dos
    format windows nt dll ^
end

Important

If you try to compile from Windows, check if wcl386 command is recognized by the Windows Command Prompt or PowerShell console. If not, add the C:\<WATCOM FOLDER PATH>\BINW path to the Windows environment variables.

What is DIV Games Studio?

Maybe was one of the first game engines for the public. DIV Games Studio is a complete solution to develop games for MS-DOS and published in 1997 (DIV1) and 1998 (DIV2).

Is a full windows graphic environment with tools for creation and editing 2D graphics (with a complete drawing suit), particle FX, character animations, font character sets, sounds effects and a complete language programming with a syntax between Pascal and C, including an integrated debugger and a full complete documentation with a lot of tutorials and samples.

This engine allow to develop common 2D games with a full of advanced graphic features, and pseudo 3D games using the Mode7 and later, with DIV2, the Mode8 (3D feature like the original Doom).

DIV Games Studio was very popular at the end of ninetys and early 2000. Was the start point of an entire generation of game developers of nowdays. During the years, the community was develop a multiple forks like Fenix Project (with multiple flavours), eDivc, CDiv, Div GO, Gemix Studio, Bennu GD, or PixTudio.

Currently exists 2 projects to bring it to live again:

  • Div DX / DIV Games Studio 3 - A port of DIV Games Studio 2 to modern systems (running on Windows, Linux and Mac natively) but keeping the all original features of DIV Games Studio 2. One of the interested features, including the fix of most of the existing bugs on original DIV2, is the posibility of export the games natively to multiple systems, including Android, HTML5 and some consoles. This project has still in beta and seems to be abandoned since 2016.
  • DIV Games Studio 2.02 - A reconstruction and fixing of the original DIV Games Studio 2 (v 2.01) for MS-DOS. This is an active project today where the developers want to fix the multiple bugs in the language programming and engine, improve the tools, and, maybe in a future, create a version for Amiga OS.

DIV Games Studio if fully functional on DOSBox. You can download DIV Games Studio 2 ISO from Archive.org as abandoneware.

DIV Games Studio 2 screenshots