Donate Now Goal amount for this month: 95 USD, Received: 20 USD (21%)

  1. 06-02-2005
    Views:
    27,823
+ Post New Thread
Threads 1 to 8 of 8

Forum: Utility Classes and Libraries

SE Vector, Data Structures, General Algorithms, etc

  1.   Sticky Threads  

  2. Sticky Thread Sticky: Code Advanced VMT Hooking

    Alright, this small release definitely needs some explanation. Everything here probably only applies to the microsoft C++ compiler but eh... The example code also assumes that the toolkit namespace is brought into the global namespace. One of the major problems I have with hooking is that you...

    Started by Casual_Hacker, 05-10-2010 02:08 PM
    4 Staff Post(s)
    • Replies: 8
    • Views: 709
    05-13-2010 10:30 PM Go to last post
  3. Sticky Thread Sticky: Code [CLASS] SigDB and SigManager

    SigDB and SigManager v1.1 A simple solution for signature storage stuff What it do Allows for a single container for all of your pointer needs Provides pattern-matching capabilities with offsets Who we be class CSigManager

    Started by syntroniks, 03-17-2010 02:13 PM
    • Replies: 10
    • Views: 540
    04-27-2010 05:57 PM Go to last post
  4. Sticky Thread Sticky: C++ I18n Code

    This is just some simple internationalization (i18n) functions which are useful when dealing with string conversions (wide <-> narrow, and upper <-> lower). Makes use of C++0x features, and as such will require a C++0x capable compiler (MSVC 10.x, ICC 10.x and 11.x, or GCC 4.5.x). //...

    Started by Chazwazza, 12-26-2009 03:08 AM
    4 Staff Post(s) code, i18n
    • Replies: 10
    • Views: 664
    01-02-2010 07:08 PM Go to last post
  5. Lightbulb Sticky Thread Sticky: Tool Simpler Command Interpreter

    Well, Absolution released a regex-based command interpreter, which I am not crazy about because regular-expressions are slowish and overly complicated for a job so simple (IMHO). Today I wrote a simpler command interpreter, which passes an std::vector of arguments to the callback function....

    Started by Xeno123, 10-25-2009 05:51 PM
    command, interpreter, simpler
    • Replies: 8
    • Views: 591
    10-26-2009 06:17 AM Go to last post
  6. Sticky Thread Sticky: Code Command Interpreter

    Since people have recently been releasing various tools/libraries to help with hack development. . . why not throw another interpreter in the mix. The most interesting thing of this is probably the regex - other than that, its not that different from what people have done before. . . ...

    Started by Absolution, 10-01-2009 09:59 AM
    4 Staff Post(s)
    • Replies: 9
    • Views: 811
    10-23-2009 04:23 PM Go to last post
  7. Sticky Thread Sticky: WinDbg STL Logging Class

    This class can be used to redirect the standard output streams (technically any output stream but obviously redirecting the standard ones will be the most useful) to the WinDbg output window. Very simple in concept and in implementation. Tested and working as intended. Just figured this would be...

    Started by Chazwazza, 10-15-2009 05:34 AM
    1 Staff Post(s) class, logging, stl, windbg
    • Replies: 11
    • Views: 510
    10-15-2009 09:21 AM Go to last post
  8. Sticky Thread Sticky: Release Configuration File Class

    Hello, Today I wrote a lightweight class to handle storing variables of most types in files without the need for Boost.Serialization or Boost.programoptions, without the need for the deprecated Windows INI API, and without the need for the Windows Registry. I'm sure a few coders can find a...

    Started by Xeno123, 10-08-2009 06:44 PM
    • Replies: 9
    • Views: 500
    10-09-2009 01:07 PM Go to last post
  9. Sticky Thread Sticky: EnsureCleanup

    I'm posting this here because I'm astounded by the number of people that don't know about it. This makes life so much easier when doing C++ work involving the Win32 API. Not only easier though, but safer. Not only do these classes improve function structure by allowing you to leave a function...

    Started by Chazwazza, 07-19-2009 03:23 AM
    ensurecleanup
    • Replies: 0
    • Views: 539
    07-19-2009 03:23 AM Go to last post
  10. Sticky Thread Sticky: Mixing SEH and C++ EH

    This is just a simple class that allows you to catch structured exceptions (access violations etc) as proper C++ exceptions. The advantage of this is that it allows you to handle situations where SEH may be needed, but is unavailable because your code is in C++ and SEH can't perform the necessary...

    Started by Chazwazza, 07-11-2009 12:09 AM
    mixing, seh
    • Replies: 1
    • Views: 738
    07-11-2009 05:28 AM Go to last post
  11. Sticky Thread Sticky: N-Dimensional Vector Template Class

    Hey, whipping together some of the math classes for one of my projects and just 'finished' an N-dimensional vector class. Only tested lightly. Should be fully portable, but that has not been tested. Still needs some extra features (cross product, linear interpolation, reflection, etc), and...

    Started by Chazwazza, 07-08-2009 07:07 AM
    class, ndimensional, template, vector
    • Replies: 10
    • Views: 401
    07-10-2009 12:36 PM Go to last post
  12. Sticky Thread Sticky: Simple HashTable Implementation

    Information on Hash Tables: http://en.wikipedia.org/wiki/Hash_table Had to write this for an assignment a while ago, shows a simple hash table implementation that hashes based on a string. It may be useful to some people. Pretty easy to modify. HashTable.cpp #include "Includes.h" /*

    Started by Absolution, 12-09-2008 05:50 PM
    4 Staff Post(s) hashtable, implementation, simple
    • Replies: 4
    • Views: 497
    12-11-2008 01:50 AM Go to last post
  13. Sticky Thread Sticky: Interpreter and file manager

    Here is the file manager and interpreter I wrote and am currently using in Project Dionysus. CInterpreter.cpp // Project Dionysus // --------------------------------- // String interpreter engine // By Chod

    Started by Chod, 08-16-2008 09:29 AM
    1 Staff Post(s)
    • Replies: 3
    • Views: 608
    09-10-2008 08:21 PM Go to last post
  14. Smile Sticky Thread Sticky: CInfoTree class

    http://www.fitzgibbon.pwp.blueyonder.co.uk/InfoTree.zip (project files require Visual Studio .NET 2003, source should be cross-platform Standard C++) I made this for a project I'm working on. It isn't quite finished, but the core of the class is perfectly functional. The main things I need to...

    Started by tabris, 12-23-2004 07:02 PM
    2 Pages
    1 2
    10 Staff Post(s) cinfotree, class
    • Replies: 15
    • Views: 1,917
    10-12-2006 02:57 PM Go to last post
  15.   Normal Threads  

  1. Lightbulb Release Html log

    This is a yet another logging class but this time it has the capability to output html files. Meaning that you can use colors in your log. How to get If you have installed git, simply execute this in your console: git clone git://gitorious.org/wm/wutilities.gitOR Download from here:...

    Started by Wille, 2 Weeks Ago 11:52 AM
    • Replies: 1
    • Views: 105
    2 Weeks Ago 02:13 PM Go to last post
  2. Release VAMemory - C# Memory Class DLL .NET 3.5

    A Tutorial on how to use this can be found here How to use: 1. Add it as a reference in your C# project. 2. VAMemory VAM = new VAMemory("processname e.g. haloce"); 3. Done! You can Read/Write all kind of data types. Don't forget to cast (IntPtr). string readString =...

    Started by Patrickssj6, 03-28-2010 09:35 AM
    1 Staff Post(s)
    • Replies: 10
    • Views: 348
    03-30-2010 06:35 PM Go to last post
  3. Red face std::map from VS 2005

    made (parsed :rolleyes2: ) it in few minutes when tried to change ide from vs 2005 :) which is not compatible with newer versions, so: (readonly mode) template <class A, class B> class STD_MAP { public: #pragma pack(push, 1) struct value_type

    Started by mattdog, 12-15-2009 05:09 PM
    crt2005, stdmap
    • Replies: 3
    • Views: 383
    01-10-2010 10:07 AM Go to last post
  4. [Class] CModelRec: fast vert + prim logger

    CModelRec This is based entirely off of moster64's work: http://forum.gamedeception.net/showthread.php?t=14175 I made it a class because I toyed with the idea of running 2 at a time, one for vertices and one for primitives. Nevertheless: ModelRec.h

    Started by syntroniks, 12-17-2009 01:34 PM
    • Replies: 1
    • Views: 289
    12-17-2009 01:54 PM Go to last post
  5. Tool Lexical cast specializations for narrowing and widening strings

    Because lexical_cast doesn't support this by default: #ifndef LEXICALCASTSPECIAL_HPP_ #define LEXICALCASTSPECIAL_HPP_ #include <string> #include <locale> #include <boost/lexical_cast.hpp> template<> inline std::string boost::lexical_cast<std::string, std::wstring>(const std::wstring&...

    Started by Xeno123, 11-02-2009 03:03 PM
    • Replies: 9
    • Views: 616
    11-03-2009 03:38 PM Go to last post
  6. Tool Generic Data Management Class

    I just wrote this simple data management class, which is quite useful for holding offsets or model recs. You can do an int to int datamanger, and then get the numverts (use as key) from the class to return a team number so you know what to color, etc. Fairly wide range of possibilities so I...

    Started by Xeno123, 10-01-2009 09:20 AM
    class, data, generic, management
    • Replies: 3
    • Views: 275
    10-01-2009 11:41 AM Go to last post
  7. STL Quasi-Hashtable Implementation

    I call it a hashtable because it works like the .NET version of it, but it's more or less an associative array. Just a quick wrapper around std::map. #pragma once #include <map> template<typename _Key, typename _Data> class Hashtable {

    Started by ozzeh, 06-03-2009 02:23 AM
    4 Staff Post(s) implementation, quasihashtable, stl
    • Replies: 7
    • Views: 509
    06-03-2009 11:04 PM Go to last post
  8. Basic virtual file system

    I don't know exactly what to call this, so I guess a virtual file system will suffice. Anyways, on to my problem. I have a file that holds all of my files within it, like a zip, but without compression, it has the files, and then a directory at the end with all of the file offsets, lengths...

    Started by b0x, 09-18-2004 02:48 PM
    3 Staff Post(s) basic, file, virtual
    • Replies: 6
    • Views: 3,358
    07-28-2008 01:00 PM Go to last post

+ Post New Thread

Forum Information and Options

Users Browsing this Forum

There are currently 1 users browsing this forum. (0 members & 1 guests)

Thread Display Options

Use this control to limit the display of threads to those newer than the specified time frame.

Allows you to choose the data by which the thread list will be sorted.

Order threads in...

Note: when sorting by date, 'descending order' will show the newest results first.

Icon Legend

Contains unread posts
Contains unread posts
Contains no unread posts
Contains no unread posts
More than 15 replies or 500 views
Hot thread with unread posts
More than 15 replies or 500 views
Hot thread with no unread posts
Closed Thread
Thread is closed
Thread Contains a Message Written By You
You have posted in this thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts