Valhalla Legends Archive

Programming => Advanced Programming => Topic started by: thetempest on December 03, 2003, 10:37 PM

Title: project fesibility
Post by: thetempest on December 03, 2003, 10:37 PM
Hey,

This if for all you diehard SC fans.  I'm instrested in creating a hack to mimick the Warc3 Map ping.  Now, only the people that use this hack/plugin whatever, will be able to see the ping.

I would have to create a protocol:
byte: color
bye: playerIDNumber
DWORD: XCORD
DWORD: YCORD

as well as a function to draw a circle on the minimap, which would require low level bitblits and the address of the SC back/primary buffer.

Is there anything else that i missed? and is anyone else intrested in this?

Thanks
Title: Re:project fesibility
Post by: Skywing on December 03, 2003, 11:00 PM
I think it would be a better idea to use the built-in minimap ping function.
Title: Re:project fesibility
Post by: thetempest on December 04, 2003, 12:56 PM
good idea, i forgot about the square box ping :)

i'll look into that
Title: Re:project fesibility
Post by: Banana fanna fo fanna on December 04, 2003, 02:24 PM
You'd need to figure out how to CALL the minimap ping. Then you'd have to figure out how to hook the mouse to access. Finally, you'd need a reliable but UDP-based protocol which can grab the addresses of the players out of StarCraft's memory.
Title: Re:project fesibility
Post by: Skywing on December 04, 2003, 03:07 PM
Quote from: St0rm.iD on December 04, 2003, 02:24 PM
You'd need to figure out how to CALL the minimap ping. Then you'd have to figure out how to hook the mouse to access. Finally, you'd need a reliable but UDP-based protocol which can grab the addresses of the players out of StarCraft's memory.
I think the idea is to extend the in-game protocol itself.
Title: Re:project fesibility
Post by: Banana fanna fo fanna on December 04, 2003, 03:18 PM
Quote from: Skywing on December 04, 2003, 03:07 PM
Quote from: St0rm.iD on December 04, 2003, 02:24 PM
You'd need to figure out how to CALL the minimap ping. Then you'd have to figure out how to hook the mouse to access. Finally, you'd need a reliable but UDP-based protocol which can grab the addresses of the players out of StarCraft's memory.
I think the idea is to extend the in-game protocol itself.

Extremely difficult.
Title: Re:project fesibility
Post by: Kp on December 04, 2003, 04:36 PM
Quote from: St0rm.iD on December 04, 2003, 03:18 PM
Quote from: Skywing on December 04, 2003, 03:07 PMI think the idea is to extend the in-game protocol itself.
Extremely difficult.

Not at all.  Extensions to the in-game protocol came up as a possible development in vL more than a year ago, but I don't believe we ever had time to do much with it.  It's very possible, and pretty easy if you know how to add data to the outbound stream.
Title: Re:project fesibility
Post by: Banana fanna fo fanna on December 04, 2003, 05:04 PM
What if the other end doesn't run it?

Does SC just ignore packets with an ID it can't handle?
Title: Re:project fesibility
Post by: Kp on December 04, 2003, 05:11 PM
Quote from: St0rm.iD on December 04, 2003, 05:04 PM
What if the other end doesn't run it?

Then why would you send it if they don't recognize it?
Title: Re:project fesibility
Post by: thetempest on December 05, 2003, 03:57 PM
no,

the idea is that only people who had the hack running would recognize it.

yes storm.ID, starcraft just ignores packets it doesn't understand...

most recv() blocks for games look like this:


GENERAL_PACKET  *gen_packet;
while(recv)
{
     recv = recv(socket,address,len);
     gen_packet = (GENERAL_PACKET*) address

     switch(gen_packet->packetID)
     {
           default:
           break;
     }

}