Valhalla Legends Archive

Programming => Advanced Programming => Topic started by: UserLoser. on December 03, 2003, 08:36 PM

Title: War2 BN's Chat Window
Post by: UserLoser. on December 03, 2003, 08:36 PM
How would I go about adding text and settings colors to Warcraft II's Chat window (Where you see talks, emotes, whispers, ect)?  Using Spy++, I've been able to find the names of each class and window name under the SDlgDialog class and play around with some windows settings fonts, changing captions, and more. But, I don't see any sort of window that is a RichEdit in Spy++. How are Blizzard products chat windows done, and how would I go about adding text to them?
Title: Re:War2 BN's Chat Window
Post by: Kp on December 03, 2003, 08:50 PM
The main chat interface is a listbox which is owner-drawn, uses low unprintables to control color, and prohibits having its elements selected.  The low unprintables is why SC's UTF8 bug permits color -- you send something that decodes into a low unprintable and the result is color.
Title: Re:War2 BN's Chat Window
Post by: Mesiah / haiseM on December 12, 2003, 02:14 AM
im not positive about warcraft, but starcraft has 2 listbox's, one for the main display, and one for the users in the channel. They both have the same class name and etc, so make sure your code utilizes the right one.
Title: Re:War2 BN's Chat Window
Post by: Skywing on December 12, 2003, 08:40 AM
Because that user interface is managed by Battle.snp, it works (mostly) the same between Starcraft, Diablo, and Warcraft II (excepting minor differences such as the Warcraft II version of battle.snp being much older than the Starcraft version).
Title: Re:War2 BN's Chat Window
Post by: MyndFyre on January 28, 2004, 05:45 PM
Quote from: MesiaH on December 12, 2003, 02:14 AM
im not positive about warcraft, but starcraft has 2 listbox's, one for the main display, and one for the users in the channel. They both have the same class name and etc, so make sure your code utilizes the right one.

The main chat window is a listbox?  O_O
Title: Re:War2 BN's Chat Window
Post by: Skywing on January 28, 2004, 10:12 PM
Quote from: Myndfyre on January 28, 2004, 05:45 PM
Quote from: MesiaH on December 12, 2003, 02:14 AM
im not positive about warcraft, but starcraft has 2 listbox's, one for the main display, and one for the users in the channel. They both have the same class name and etc, so make sure your code utilizes the right one.

The main chat window is a listbox?  O_O
Yes; you can check these things out yourself with Spy++, which is included with Visual C++.