View Single Post
C++ port of Quake2 game dll
Old
  (#1)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default C++ port of Quake2 game dll - 23-12-2009

well it isn't just get the C code compiled in a C++ compiler but fully object-oriented

http://code.google.com/p/cleancodequake2/

This seems rather new (SVN r1 is dated Mar 2009) and SVN is still being updated. Some of the code syntaxes actually remind me a lot the HL syntax, such as class names like "CBaseEntity" or something like this:
Code:
LINK_ITEM_TO_CLASS (item_armor_jacket, CArmorEntity);
LINK_ITEM_TO_CLASS (item_armor_combat, CArmorEntity);
LINK_ITEM_TO_CLASS (item_armor_body, CArmorEntity);
LINK_ITEM_TO_CLASS (item_armor_shard, CArmorEntity);
haven't take a deeper look yet though

Last edited by Whistler; 23-12-2009 at 13:32..
  
Reply With Quote