- BORLAND/: Borland C++ 4.52 (chosen over 4.5 by byte-match: CODE/RP/CW32.LIB
is identical to 4.52's install lib). BCC32/TLINK32/TLIB/MAKE run natively on
Win11; CODE/BT/OPT.MAK is the shipped BTL4OPT.EXE's exact flag recipe
(extender = Borland PowerPack DPMI32, not Phar Lap TNT).
- restoration/source410/: the literal 1995-form reconstruction of the missing
BT game source (never mixed into CODE/). Round 1-3 state:
* 6 of 10 surviving original TUs COMPILE CLEAN under the period toolchain
(BTMSSN, BTCNSL, BTSCNRL, BTTEAM, BTL4MODE, BTL4ARND) - first builds
since 1996.
* BT_L4/BTL4APP.CPP pilot reconstruction: 12/12 functions, Fail() lands on
its binary-recorded line 400 exactly.
* BT/BTCNSL.HPP: console wire IDs recovered from the binary's ctors
(Killed=9, Damaged=10, ScoreUpdate=13, DeathWithoutHonor=15 [T1];
TeamScore=12 flagged [T4]).
* MUNGA/: 8 engine-header backfills back-dated from the BT412 WinTesla tree
(VDATA numbering decomp-verified; AUDREND's OpenAL-era virtual removed -
the period compiler is the drift detector).
* Tooling: backdate.py (WinTesla->1995 header transform), compile410.sh
(per-TU verification sweep under authentic OPT.MAK flags).
* README: corrected roadmap - MECH.HPP is the capstone grown with the mech
TU reconstructions; BTREG.CPP green = the header-family milestone.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
93 lines
2.6 KiB
C++
93 lines
2.6 KiB
C++
//----------------------------------------------------------------------------
|
|
// ObjectWindows
|
|
// (C) Copyright 1992, 1994 by Borland International, All Rights Reserved
|
|
//
|
|
// Implementation for GDI Pen object
|
|
//----------------------------------------------------------------------------
|
|
#include <owl/owlpch.h>
|
|
#include <owl/gdiobjec.h>
|
|
|
|
DIAG_DECLARE_GROUP(OwlGDI); // General GDI diagnostic group
|
|
DIAG_DECLARE_GROUP(OwlGDIOrphan); // Orphan control tracing group
|
|
|
|
//
|
|
// Constructors
|
|
//
|
|
TPen::TPen(HPEN handle, TAutoDelete autoDelete)
|
|
:
|
|
TGdiObject(handle, autoDelete)
|
|
{
|
|
#if !defined(NO_GDI_ORPHAN_CONTROL)
|
|
if (ShouldDelete)
|
|
OBJ_REF_ADD(Handle, Pen);
|
|
#endif
|
|
}
|
|
|
|
//
|
|
// detect constructions of stock pens & get stock objects instead
|
|
//
|
|
TPen::TPen(TColor color, int width, int style)
|
|
{
|
|
if (width == 1 && style == PS_SOLID &&
|
|
(color == TColor::Black || color == TColor::White)) {
|
|
if (color == TColor::Black)
|
|
Handle = ::GetStockObject(BLACK_PEN);
|
|
else
|
|
Handle = ::GetStockObject(WHITE_PEN);
|
|
ShouldDelete = false;
|
|
return;
|
|
}
|
|
Handle = ::CreatePen(style, width, color);
|
|
WARNX(OwlGDI, !Handle, 0, "Cannot create TPen (" << color << " " << width <<
|
|
" " << style << ")");
|
|
CheckValid();
|
|
OBJ_REF_ADD(Handle, Pen);
|
|
}
|
|
|
|
TPen::TPen(const LOGPEN far* logPen)
|
|
{
|
|
PRECONDITION(logPen);
|
|
Handle = ::CreatePenIndirect((LPLOGPEN)logPen);
|
|
WARNX(OwlGDI, !Handle, 0, "Cannot create TPen from logPen @" <<
|
|
hex << uint32(LPVOID(logPen)));
|
|
CheckValid();
|
|
OBJ_REF_ADD(Handle, Pen);
|
|
}
|
|
|
|
TPen::TPen(const TPen& src)
|
|
{
|
|
LOGPEN logPen;
|
|
|
|
src.GetObject(logPen);
|
|
Handle = ::CreatePenIndirect(&logPen);
|
|
WARNX(OwlGDI, !Handle, 0, "Cannot create TPen from TPen @" <<
|
|
hex << uint32(LPVOID(&src)));
|
|
CheckValid();
|
|
OBJ_REF_ADD(Handle, Pen);
|
|
}
|
|
|
|
#if defined(BI_PLAT_WIN32)
|
|
TPen::TPen(uint32 penStyle, uint32 width, const TBrush& brush,
|
|
uint32 styleCount, uint32* style)
|
|
{
|
|
LOGBRUSH logBrush;
|
|
brush.GetObject(logBrush);
|
|
Handle = ::ExtCreatePen(penStyle, width, &logBrush, styleCount, style);
|
|
WARNX(OwlGDI, !Handle, 0, "Cannot create TPen from brush " << hex <<
|
|
uint(HBRUSH(brush)));
|
|
CheckValid();
|
|
OBJ_REF_ADD(Handle, Pen);
|
|
}
|
|
|
|
TPen::TPen(uint32 penStyle, uint32 width, const LOGBRUSH& logBrush,
|
|
uint32 styleCount, uint32* style)
|
|
{
|
|
Handle = ::ExtCreatePen(penStyle, width, (LPLOGBRUSH)&logBrush, styleCount,
|
|
style);
|
|
WARNX(OwlGDI, !Handle, 0, "Cannot create TPen from logBrush @" <<
|
|
hex << uint32(LPVOID(&logBrush)));
|
|
CheckValid();
|
|
OBJ_REF_ADD(Handle, Pen);
|
|
}
|
|
#endif
|