Isometric camera
Moderator: InsideQC Admins
24 posts
• Page 2 of 2 • 1, 2
Mexicouger wrote:And Baker, I get what you were trying to say now, after I overlooked the code. I viewed this as a quick tut. My bad.
Lemme tell ya, I am rooting for you all the way. I know you are a rookie, you know you are rookie ... no one questions that. That is where you are today; you get to decide where you are tomorrow --- and I like what I see.
Determination is all. I mean this sincerely. People that never quit always end up making it somewhere. No one ever said the road was easy, and yet you are still here ... and improving.
It isn't about where you are, it is about your determination in making it where you want to be.
The night is young. How else can I annoy the world before sunsrise?
Inquisitive minds want to know ! And if they don't -- well like that ever has stopped me before ..
-

Baker - Posts: 3666
- Joined: Tue Mar 14, 2006 5:15 am
I don't think I am a QC rookie anymore. I am a major C rookie though. I have learned alot since now and when I started though, thanks to my Book and you guys.
I am a fairly determined person when it comes to Quake modding. I have every intention to get this game playable. It helps alot when you can visualize the code. Then you can see your goal easier.
One thing that Revamped is really going need due to the new camera, is a Radar. Do you know of any mods that have a Radar(Besides Solitude), Or a minimap?
I am a fairly determined person when it comes to Quake modding. I have every intention to get this game playable. It helps alot when you can visualize the code. Then you can see your goal easier.
One thing that Revamped is really going need due to the new camera, is a Radar. Do you know of any mods that have a Radar(Besides Solitude), Or a minimap?
-

Mexicouger - Posts: 514
- Joined: Sat May 01, 2010 10:12 pm
I don't. Not easily base Quake compatible ones -- yet I do not claim to have played all Q1 mods.
That being said, every entity even in the client has an X, Y, Z location (at least the ones the server decides to communicate to the client). Discard the Z and you have somewhat of a basis for radar.
Although that isn't newbie friendly, in a way that info alone has to be enough to someone doing engine modification. I know that is sort of a shitty answer, but part of engine modification is taking pieces of information and scoring from it.
That being said, every entity even in the client has an X, Y, Z location (at least the ones the server decides to communicate to the client). Discard the Z and you have somewhat of a basis for radar.
Although that isn't newbie friendly, in a way that info alone has to be enough to someone doing engine modification. I know that is sort of a shitty answer, but part of engine modification is taking pieces of information and scoring from it.
The night is young. How else can I annoy the world before sunsrise?
Inquisitive minds want to know ! And if they don't -- well like that ever has stopped me before ..
-

Baker - Posts: 3666
- Joined: Tue Mar 14, 2006 5:15 am
Well, if you want to distinguish between the enemie being dead or not, this might be useful.
if (ent->health > 0)
{
}
Though you probably already knew that.
This also might be of use.

if (ent->health > 0)
{
}
Though you probably already knew that.
This also might be of use.
- Code: Select all
player->origin[0]-ent->origin[0]
ent->origin[1]-player->origin[1]
- Team Xlink
- Posts: 368
- Joined: Thu Jun 25, 2009 4:45 am
- Location: Michigan
So I was reading in my book, And is this symbole: ->
Similar to just a "."? Just a but more easy to read?
player.origin[0]-ent.origin[0]
ent.origin[1]-player.origin[1]
I think the dots are easier to read, but I think in some instances they don't work
Similar to just a "."? Just a but more easy to read?
player.origin[0]-ent.origin[0]
ent.origin[1]-player.origin[1]
I think the dots are easier to read, but I think in some instances they don't work
-

Mexicouger - Posts: 514
- Joined: Sat May 01, 2010 10:12 pm
Downsider wrote:erm
A -> is used when the object you're using is a pointer, a . is used when the object you're using is a reference.
Ya, Just figured that out in detail.Hence why -> looks like a pointer.
-

Mexicouger - Posts: 514
- Joined: Sat May 01, 2010 10:12 pm
Mexicouger wrote:well it is a Halo Top-Down mod
Well, I would never figured that out...
I know FrikaC made a cgi-bin version of the quakec interpreter once and wrote part of his website in QuakeC
(LordHavoc)
-

frag.machine - Posts: 2090
- Joined: Sat Nov 25, 2006 1:49 pm
24 posts
• Page 2 of 2 • 1, 2
Who is online
Users browsing this forum: No registered users and 1 guest
