Inside3D!
     

Quake(one) to C++
Goto page Previous  1, 2, 3  Next
 
Post new topic   Reply to topic    Inside3d Forums Forum Index -> General Programming
View previous topic :: View next topic  
Author Message
gnounc



Joined: 06 Apr 2009
Posts: 120

PostPosted: Wed Aug 11, 2010 2:40 am    Post subject: Reply with quote

I got it to run (with errors). The errors might be down to me missing some vc++ files.

It ran at something like 4 frames per second, but it ran.

Something strange was going on with the teleporter texture, it looked
like the players view was being projected onto it. Kind of neat, then the teleporter view went upside down hehe.

Anyway interesting : )
Back to top
View user's profile Send private message
Feared



Joined: 11 Jun 2010
Posts: 17

PostPosted: Wed Aug 11, 2010 3:08 pm    Post subject: Reply with quote

I'd love to join this argument but it's the never ending war. Wink

Anyways, @Baker http://bfeared.com/projects/quakecpp
It's pretty much just FitzQuake, so nothing special, yet.

@gnounc, What in the world? I have a pre-compiled exe on my site, try that out, and what version of MSVS are you using?

Edit:
Did you try compiling in release mode?
I do remember not having fixed debug mode before releasing, I may need to do a update again, I just gotta get these cvar's working and I'll make another update.
Back to top
View user's profile Send private message
gnounc



Joined: 06 Apr 2009
Posts: 120

PostPosted: Wed Aug 11, 2010 8:54 pm    Post subject: Reply with quote

I was using the precompiled binary: ) it was bitching about a dll so I installed the c++ libraries and the bitching went away.
Back to top
View user's profile Send private message
Feared



Joined: 11 Jun 2010
Posts: 17

PostPosted: Thu Aug 12, 2010 12:37 am    Post subject: Reply with quote

gnounc wrote:
I was using the precompiled binary: ) it was bitching about a dll so I installed the c++ libraries and the bitching went away.


What O/S are you running?
I'll try and look into this, I just need a little more info.

Do you remember the name of the DLL at all?

Thanks!
Back to top
View user's profile Send private message
gnounc



Joined: 06 Apr 2009
Posts: 120

PostPosted: Thu Aug 12, 2010 6:11 am    Post subject: Reply with quote

msvcr100

win7 (tiny7)
Back to top
View user's profile Send private message
Stroggos



Joined: 14 Apr 2009
Posts: 43

PostPosted: Thu Aug 12, 2010 8:12 am    Post subject: Reply with quote

I'm doing something like this but with the original Q1 Sources. I started with he CVAR stuff and then worked my way up. It was interesting getting intimate with some Q1 code.
_________________
Dont even try to port Quake 4 to the ipod
Back to top
View user's profile Send private message
gnounc



Joined: 06 Apr 2009
Posts: 120

PostPosted: Thu Aug 12, 2010 8:32 am    Post subject: Reply with quote

Show us!
Back to top
View user's profile Send private message
Feared



Joined: 11 Jun 2010
Posts: 17

PostPosted: Thu Aug 12, 2010 8:26 pm    Post subject: Reply with quote

Stroggos wrote:
I'm doing something like this but with the original Q1 Sources. I started with he CVAR stuff and then worked my way up. It was interesting getting intimate with some Q1 code.


I originally planned on using the Q1 Sources but ended up doing this because the ASM junk was already gone and I didn't feel like getting rid of it from the original code. ^^

Good luck on your project.

gnounc wrote:
msvcr100

win7 (tiny7)

I thought VCRedist was automatically installed on Windows 7, that sounds like a tiny7/custom package issue.
Try installing this latest redist:

http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=a7b7a05e-6de6-4d3a-a423-37bf0912db84

Edit:
Oh and mh, I stole some code from DirectQ, if you don't mind. I've noted you in the source. (cvar registering to be exact, saves me time, thanks)

Smile
Back to top
View user's profile Send private message
mh



Joined: 12 Jan 2008
Posts: 909

PostPosted: Thu Aug 12, 2010 10:58 pm    Post subject: Reply with quote

Feared wrote:
Oh and mh, I stole some code from DirectQ, if you don't mind. I've noted you in the source. (cvar registering to be exact, saves me time, thanks)

Smile

You're more than welcome to steal whatever you want. Very Happy

I'm following this one with interest. Cool
_________________
DirectQ Engine - New release 1.8.666a, 9th August 2010
MHQuake Blog (General)
Direct3D 8 Quake Engines
Back to top
View user's profile Send private message Visit poster's website
Stroggos



Joined: 14 Apr 2009
Posts: 43

PostPosted: Sat Aug 14, 2010 7:47 am    Post subject: Reply with quote

I will show you guys soon just got to clean and fix a few things first. Also I want to include LZMA compression, and Quake III unzip.c/.h, as well as OpenAL EAX surround sound.
_________________
Dont even try to port Quake 4 to the ipod
Back to top
View user's profile Send private message
Feared



Joined: 11 Jun 2010
Posts: 17

PostPosted: Sat Aug 14, 2010 11:00 pm    Post subject: Reply with quote

@gnounc
Try this new executable if you have the chance, I think it might have been the Whole Program Optimization (doesn't seem to friendly) that's causing the problem.

http://bfeared.com/library/software/quakecpp_test001.rar
Back to top
View user's profile Send private message
leileilol



Joined: 15 Oct 2004
Posts: 1321

PostPosted: Sat Aug 14, 2010 11:59 pm    Post subject: Reply with quote

Stroggos wrote:
I want to include LZMA compression


You go do that. LZMA for games = BAD IDEA.
_________________
Back to top
View user's profile Send private message
gnounc



Joined: 06 Apr 2009
Posts: 120

PostPosted: Sun Aug 15, 2010 3:11 am    Post subject: Reply with quote

downloaded that link, the new binary does exactly the same thing as the old one did.

I'm on an intel 945gm graphics card. (integrated graphics)

2.0 ghz dual core processor.
Back to top
View user's profile Send private message
Stroggos



Joined: 14 Apr 2009
Posts: 43

PostPosted: Sun Aug 15, 2010 10:04 am    Post subject: Reply with quote

leileilol wrote:
Stroggos wrote:
I want to include LZMA compression


You go do that. LZMA for games = BAD IDEA.


Just trying to include some features which some people may find handy. Since I wrote that post I have opted to use PhysFS by Icculus which does some really cool things.
_________________
Dont even try to port Quake 4 to the ipod
Back to top
View user's profile Send private message
Feared



Joined: 11 Jun 2010
Posts: 17

PostPosted: Sun Aug 15, 2010 6:44 pm    Post subject: Reply with quote

Hmmm, I'm having this problem all of a sudden, (after updating my video drivers that have opengl 4.0 support) but it's very random, sometimes it just crashes, get's 2 fps, or just works fine.
I'll look into this, thanks gnounc for pointing this out, I would've blamed my video drivers otherwise.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Inside3d Forums Forum Index -> General Programming All times are GMT
Goto page Previous  1, 2, 3  Next
Page 2 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2004 phpBB Group