Zelaron Gaming Forum

Zelaron Gaming Forum (http://zelaron.com/forum/index.php)
-   World Record Thread (http://zelaron.com/forum/forumdisplay.php?f=253)
-   -   World Record Thread (http://zelaron.com/forum/showthread.php?t=27916)

Wallow 2008-08-08 06:16 PM

Quote:

Originally Posted by Goodlookinguy (Post 646349)
Hey, I didn't make it nor did I choose it on Atnas' forum. I have a feeling that you did it, because Atnas told me that he didn't do it. So, that brings me to the conclusion that your gay. Obviously putting that on me meant that you searched for it. Which seems gay in the eye of anyone who has half a brain. Of couse, I can't back up that you even have that.

Sorry, thought you made that avatar. Nop, I've never seen that person in my life, nonetheless post it on Zelaron for you to make as an avatar

Goodlookinguy 2008-08-09 02:28 AM

Quote:

Originally Posted by KagomJack (Post 646356)
Your should be 'you're" in that "your gay" sentence.

Kagom, I'd been up for 26-hours when I put that up. I really, really, need to get to sleep. However, my body doesn't tire, so I guess I'm on 46-hours now. :(

I'm up for this long period of time because I'm working to finish my game. I'm around 80% done with over 2-3 hours of game play at least.

Wallow 2008-08-09 04:51 PM

Quote:

Originally Posted by Goodlookinguy (Post 646388)
Kagom, I'd been up for 26-hours when I put that up. I really, really, need to get to sleep. However, my body doesn't tire, so I guess I'm on 46-hours now. :(

I'm up for this long period of time because I'm working to finish my game. I'm around 80% done with over 2-3 hours of game play at least.

Is that Dedication or Addiction to the game?

Goodlookinguy 2008-08-09 06:41 PM

Quote:

Originally Posted by Wallow (Post 646410)
Is that Dedication or Addiction to the game?


I say dedication and the fact that I put a time limit for a release on August the 15th. I went to sleep and I am just now waking up. I'm tired now, though.

Draco2003 2008-08-11 02:19 AM

It is part of a Game Engine, as you can probably see.

Alright, Section 3.2:

Code:

int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
{
    MSG                msg;
    static int  iTickTrigger = 0;
    int          iTickCount;

    if (GameInitialize(hInstance))
{
    // Initialize the Game Engine
    if (!GameEngine::GetEngine() ->Initialize(iCmdShow))
          return FALSE;

    // Enter the message loop
    while (TRUE)
    {
      if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
      {
        // Process the message
        if (msg.message == WM_QUIT)
          break;
        TranslateMesage(&msg);
        DispatchMessage(&msg);
      }
      else
      {
        // Make sure the game isn't sleeping
        if (!GameEngine::GetEngine() ->GetSleep())
        {
            // Check the Tick Counter to see if a game cycle has elapsed
            iTickCount = GetTickCount();
            if (iTickCount > iTickTrigger)
            {
                iTickTrigger = iTickCount +
                GameEngine::GetEngine() ->GetFrameDelay();
                GameCycle();
              }
            }
          }
        }
        return 0;
        }
      GameEnd();
      return TRUE;
}


Draco2003 2008-08-11 02:50 AM

Here is 3.1 maybe that will help...

Code:

class GameEngine
{
  protected:
  // Member Variables
  static GameEngine*  m_pGameEngine;
  HINSTANCE            m_hInstance;
  HWND                m_hWindow;
  TCHAR                m_szWindowClass[32];
  TCHAR                m_szTitle[32];
  WORD                m_wIcon, m_wSmallIcon;
  int                  m_iWidth, m_iHeight;
  int                  m_iFrameDelay;
  BOOL                m_bSleep;

  public:
  // Constructors and Destructor
          GameEngine(HINSTANCE hInstance, LPTSTR szWindowClass, LPTSTR szTitle, WORD wIcon, WORD wSmallIcon, int iWidth = 640, int iHeight = 480);
    virtual ~GameEngine();

  // General Methods
  static GameEngine*  GetEngine() { return m_pGameEngine; };
  BOOL                Initialize(int iCmdShow);
  LRESULT              HandleEvent(HWND hWindow, UINT msg, WPARAM wParam, LPARAM lParam);

  // Accessor Methods
  HINSTANCE    GetInstance() {return m_hInstance; };
  HWND        GetWindow() { return m_hWindow; };
  void        SetWindow(HWND hWindow) {m_hWindow = hWindow; };
  LPTSTR      GetTitle() { return m_szTitle; };
  WORD        GetIcon() { return m_wIcon; };
  WORD        GetSmallIcon() { return m_wSmallIcon; };
  int          GetWidth() { return m_iWidth; };
  int          GetHeight() { return m_iHeight; };
  int          GetFrameDelay() { return m_iFramDelay; };
  void        SetFrameDelay(int iFrameRate) { m_iFrameDelay = 1000 / iFrameRate; };
  BOOL        GetSleep() { return m_bSleep; };
  void        SetSleep(BOOL bSleep) { m_bSleep = bSleep; };
 };


kyeruu 2008-08-12 09:04 PM

That made no fucking sense.

Wallow 2008-08-13 10:26 AM

Quote:

Originally Posted by Goodlookinguy (Post 646422)
I say dedication and the fact that I put a time limit for a release on August the 15th. I went to sleep and I am just now waking up. I'm tired now, though.

Are you fluent in Spanish and Japanese, or just partly know the languages. Yo ablo español fluido.

jamer123 2008-08-13 10:27 AM

Wallow enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHz

Wallow 2008-08-13 12:24 PM

Quote:

Originally Posted by jamer123 (Post 646821)
Wallow enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHz

What, did you look up stupid jokes online to come at me with that?

jamer123 2008-08-13 12:26 PM

no its your rep message

Goodlookinguy 2008-08-13 09:03 PM

Quote:

Originally Posted by Wallow (Post 646819)
Are you fluent in Spanish and Japanese, or just partly know the languages. Yo ablo español fluido. (I am fluent in Spanish)


I'm not entirely fluent in Spanish, just well introduced. On the other hand, I'm fluent in Japanese spelling and talking. I'm not the most proper when speaking, though.

Wallow 2008-08-14 10:58 AM

Quote:

Originally Posted by Goodlookinguy (Post 646880)
I'm not entirely fluent in Spanish, just well introduced. On the other hand, I'm fluent in Japanese spelling and talking. I'm not the most proper when speaking, though.

That's cool. So raw anime for you I guess?

kyeruu 2008-08-14 01:36 PM

So basically latino porn?

Kazilla 2008-08-14 01:37 PM

so this thread is basically for mild spamyness in order to increase ones post count? incredible - i love it

kyeruu 2008-08-14 02:23 PM

you suck :D

jamer123 2008-08-14 02:38 PM

ya mammas cock

Goodlookinguy 2008-08-14 05:25 PM

Quote:

Originally Posted by Wallow (Post 646918)
That's cool. So raw anime for you I guess?


Sometimes, though I find most fansubbers translations to be better sounding then what pops into my head.

Quote:

Originally Posted by Kazilla (Post 646950)
so this thread is basically for mild spamyness in order to increase ones post count? incredible - i love it


No, you do not increase your post count through the WRT or the Test Forum.

Kazilla 2008-08-14 05:28 PM

liar!

Wallow 2008-08-14 07:14 PM

Quote:

Originally Posted by Kazilla (Post 646976)
liar!

lecher!


All times are GMT -6. The time now is 03:22 AM.

Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
This site is best seen with your eyes open.