1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/*
* Copyright (C) Volition, Inc. 2005. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
#ifndef _PARALLAX_ONLINE_HEADER_FILE
#define _PARALLAX_ONLINE_HEADER_FILE
// ----------------------------------------------------------------------------------------------------
// PXO DEFINES/VARS
//
// default url for PXO rankings
//#define MULTI_PXO_RANKINGS_URL "http://www.volition-inc.com"
#define MULTI_PXO_RANKINGS_URL "http://www.pxo.net/rankings/fs2full.cfm"
// default url for PXO account creation
//#define MULTI_PXO_CREATE_URL "http://www.parallaxonline.com/register.html"
#define MULTI_PXO_CREATE_URL "http://www.pxo.net/newaccount.cfm"
// default url for PXO account verification
//#define MULTI_PXO_VERIFY_URL "http://www.parallaxonline.com/verify.html"
#define MULTI_PXO_VERIFY_URL "http://www.pxo.net/verify.cfm"
// default url for PXO banners
#define MULTI_PXO_BANNER_URL "http://www.pxo.net/files/banners"
// tracker and PXO addresses
#define MULTI_PXO_USER_TRACKER_IP "ut.pxo.net"
#define MULTI_PXO_GAME_TRACKER_IP "gt.pxo.com"
#define MULTI_PXO_CHAT_IP "chat.pxo.net"
// ----------------------------------------------------------------------------------------------------
// PXO FUNCTIONS
//
// initialize the PXO screen
void multi_pxo_init(int use_last_channel);
// do frame for the PXO screen
void multi_pxo_do();
// close the PXO screen
void multi_pxo_close();
// initialize the PXO help screen
void multi_pxo_help_init();
// do frame for PXO help
void multi_pxo_help_do();
// close the pxo screen
void multi_pxo_help_close();
// open up a URL
void multi_pxo_url(char *url);
// called from the game tracker API - server count update for a channel
void multi_pxo_channel_count_update(char *name,int count);
#endif
|