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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
|
/*
* Copyright (C) Volition, Inc. 1999. 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.
*
*/
#include "ship/awacs.h"
#include "io/timer.h"
#include "ship/ship.h"
#include "globalincs/linklist.h"
#include "nebula/neb.h"
#include "mission/missionparse.h"
#include "network/multi.h"
#include "species_defs/species_defs.h"
#include "iff_defs/iff_defs.h"
// ----------------------------------------------------------------------------------------------------
// AWACS DEFINES/VARS
//
// timestamp for updating AWACS stuff
#define AWACS_STAMP_TIME 1000
int Awacs_stamp = -1;
// total awacs levels for all teams
float Awacs_team[MAX_IFFS]; // total AWACS capabilities for each team
float Awacs_level; // Awacs_friendly - Awacs_hostile
// list of all AWACS sources
#define MAX_AWACS 30
typedef struct awacs_entry {
int team;
ship_subsys *subsys;
object *objp;
} awacs_entry;
awacs_entry Awacs[MAX_AWACS];
int Awacs_count = 0;
// TEAM SHIP VISIBILITY
// team-wide shared visibility info
// at start of each frame (maybe timestamp), compute visibility
ubyte Ship_visibility_by_team[MAX_IFFS][MAX_SHIPS];
// ----------------------------------------------------------------------------------------------------
// AWACS FORWARD DECLARATIONS
//
// update the total awacs levels
void awacs_update_all_levels();
// update team visibility info
void team_visibility_update();
// ----------------------------------------------------------------------------------------------------
// AWACS FUNCTIONS
//
// call when initializing level, before parsing mission
void awacs_level_init()
{
// set the update timestamp to -1
Awacs_stamp = -1;
}
// call every frame to process AWACS details
void awacs_process()
{
// if we need to update total AWACS levels, do so now
if ((Awacs_stamp == -1) || timestamp_elapsed(Awacs_stamp))
{
// reset the timestamp
Awacs_stamp = timestamp(AWACS_STAMP_TIME);
// recalculate everything
awacs_update_all_levels();
// update team visibility
team_visibility_update();
}
}
// ----------------------------------------------------------------------------------------------------
// AWACS FORWARD DEFINITIONS
//
// update the total awacs levels
void awacs_update_all_levels()
{
ship_obj *moveup;
ship *shipp;
ship_subsys *ship_system;
int idx;
// zero all levels
Awacs_level = 0.0f;
for (idx=0; idx<MAX_IFFS; idx++)
Awacs_team[idx] = 0.0f;
Awacs_count = 0;
// we need to traverse all subsystems on all ships
for (moveup = GET_FIRST(&Ship_obj_list); moveup != END_OF_LIST(&Ship_obj_list); moveup = GET_NEXT(moveup))
{
// make sure its a valid ship
if ((Objects[moveup->objnum].type != OBJ_SHIP) || (Objects[moveup->objnum].instance < 0))
continue;
// get a handle to the ship
shipp = &Ships[Objects[moveup->objnum].instance];
// ignore dying, departing, or arriving ships
if ((shipp->flags & SF_DYING) || (shipp->flags & SF_DEPARTING) || (shipp->flags & SF_ARRIVING))
continue;
// only look at ships that have awacs subsystems
if (!(Ship_info[shipp->ship_info_index].flags & SIF_HAS_AWACS))
continue;
// traverse all subsystems
for (ship_system = GET_FIRST(&shipp->subsys_list); ship_system != END_OF_LIST(&shipp->subsys_list); ship_system = GET_NEXT(ship_system))
{
// if this is an AWACS subsystem
if ((ship_system->system_info != NULL) && (ship_system->system_info->flags & MSS_FLAG_AWACS))
{
// add the intensity to the team total
Awacs_team[shipp->team] += ship_system->awacs_intensity * (ship_system->current_hits / ship_system->max_hits);
// add an Awacs source
if (Awacs_count < MAX_AWACS)
{
Awacs[Awacs_count].subsys = ship_system;
Awacs[Awacs_count].team = shipp->team;
Awacs[Awacs_count].objp = &Objects[moveup->objnum];
Awacs_count++;
}
}
}
}
// Goober5000 - Awacs_level isn't used anywhere that I can see
// awacs level
//Awacs_level = Awacs_team[TEAM_FRIENDLY] - Awacs_team[TEAM_HOSTILE];
// spew all the info
#ifndef NDEBUG
/*
for (idx=0; idx<MAX_TVT_TEAMS; idx++){
nprintf(("General", "Team %d AWACS == %f\n", idx, Awacs_team[idx]));
}
nprintf(("General", "AWACS level == %f\n", Awacs_level));
*/
#endif
}
// get the total AWACS level for target to viewer
// < 0.0f : untargetable
// 0.0 - 1.0f : marginally targetable
// >= 1.0f : fully targetable as normal
float awacs_get_level(object *target, ship *viewer, int use_awacs)
{
Assert(target); // Goober5000
Assert(viewer); // Goober5000
vec3d dist_vec, subsys_pos;
float closest = 0.0f;
float test;
int closest_index = -1;
int idx, stealth_ship = 0, check_huge_ship = 0, friendly_stealth_invisible = 0;
ship *shipp = NULL;
ship_info *sip = NULL;
int viewer_has_primitive_sensors = (viewer->flags2 & SF2_PRIMITIVE_SENSORS);
// calc distance from viewer to target
vm_vec_sub(&dist_vec, &target->pos, &Objects[viewer->objnum].pos);
int distance = (int) vm_vec_mag_quick(&dist_vec);
// redone by Goober5000
#define ALWAYS_TARGETABLE 1.5f
#define MARGINALLY_TARGETABLE 0.5f
#define UNTARGETABLE -1.0f
#define FULLY_TARGETABLE (viewer_has_primitive_sensors ? ((distance < viewer->primitive_sensor_range) ? MARGINALLY_TARGETABLE : UNTARGETABLE) : ALWAYS_TARGETABLE)
// if the viewer is me, and I'm a multiplayer observer, its always viewable
if ((viewer == Player_ship) && (Game_mode & GM_MULTIPLAYER) && (Net_player != NULL) && MULTI_OBSERVER(Net_players[MY_NET_PLAYER_NUM]))
return ALWAYS_TARGETABLE;
// check the targeting threshold
if ((Hud_max_targeting_range > 0) && (distance > Hud_max_targeting_range)) {
return UNTARGETABLE;
}
if (target->type == OBJ_SHIP) {
// if no valid target then bail as never viewable
if (target->instance < 0)
return UNTARGETABLE;
// Goober5000
shipp = &Ships[target->instance];
sip = &Ship_info[shipp->ship_info_index];
stealth_ship = (shipp->flags2 & SF2_STEALTH);
friendly_stealth_invisible = (shipp->flags2 & SF2_FRIENDLY_STEALTH_INVIS);
check_huge_ship = (sip->flags & SIF_HUGE_SHIP);
}
int nebula_enabled = (The_mission.flags & MISSION_FLAG_FULLNEB);
// ships on the same team are always viewable
if ((target->type == OBJ_SHIP) && (shipp->team == viewer->team))
{
// not necessarily now! -- Goober5000
if ( !(stealth_ship && friendly_stealth_invisible) )
return FULLY_TARGETABLE;
}
// check for a tagged ship. TAG'd ships are _always_ visible
if (target->type == OBJ_SHIP)
{
Assert( shipp != NULL );
if (shipp->tag_left > 0.0f || shipp->level2_tag_left > 0.0f)
return FULLY_TARGETABLE;
}
// only check for Awacs if stealth ship or Nebula mission
// determine the closest awacs on our team
if ((stealth_ship || nebula_enabled) && use_awacs)
{
for (idx=0; idx<Awacs_count; idx++)
{
// if not on the same team as the viewer
if (Awacs[idx].team != viewer->team)
continue;
// if this awacs source has somehow become invalid
if (Awacs[idx].objp->type != OBJ_SHIP)
continue;
// get the subsystem position
if (!get_subsystem_pos(&subsys_pos, Awacs[idx].objp, Awacs[idx].subsys))
continue;
// determine if its the closest
// special case for HUGE_SHIPS
if (check_huge_ship)
{
// check if inside bbox expanded by awacs_radius
if (check_world_pt_in_expanded_ship_bbox(&subsys_pos, target, Awacs[idx].subsys->awacs_radius))
{
closest_index = idx;
break;
}
}
// not a huge ship
else
{
// get distance from Subsys to target
vm_vec_sub(&dist_vec, &subsys_pos, &target->pos);
test = vm_vec_mag_quick(&dist_vec);
if (test > Awacs[idx].subsys->awacs_radius)
continue;
if ((closest_index == -1) || (test < closest))
{
closest = test;
closest_index = idx;
break;
}
}
}
}
// if this is a stealth ship
if (stealth_ship)
{
// if the ship is within range of an awacs
if (closest_index >= 0)
{
// if the nebula effect is active, stealth ships are only partially targetable
if (nebula_enabled)
return MARGINALLY_TARGETABLE;
// otherwise it's targetable
return FULLY_TARGETABLE;
}
// otherwise its completely hidden
else
{
return UNTARGETABLE;
}
}
// all other ships
else
{
// if this is not a nebula mission, its always targetable
if (!nebula_enabled)
return FULLY_TARGETABLE;
// if the ship is within range of an awacs, its fully targetable
if (closest_index >= 0)
return FULLY_TARGETABLE;
// fully targetable at half the nebula value
// modify distance by species
float scan_nebula_range = Neb2_awacs * Species_info[Ship_info[viewer->ship_info_index].species].awacs_multiplier;
// special case for huge ship - check inside expanded bounding boxes
if (check_huge_ship)
{
if (check_world_pt_in_expanded_ship_bbox(&Objects[viewer->objnum].pos, target, scan_nebula_range))
{
if (check_world_pt_in_expanded_ship_bbox(&Objects[viewer->objnum].pos, target, 0.5f * scan_nebula_range))
return FULLY_TARGETABLE;
return MARGINALLY_TARGETABLE;
}
}
// otherwise check straight up nebula numbers
else
{
vm_vec_sub(&dist_vec, &target->pos, &Objects[viewer->objnum].pos);
test = vm_vec_mag_quick(&dist_vec);
if (test < (0.5f * scan_nebula_range))
return FULLY_TARGETABLE;
else if (test < scan_nebula_range)
return MARGINALLY_TARGETABLE;
}
// untargetable at longer range
return UNTARGETABLE;
}
}
// update team visibility
void team_visibility_update()
{
int team_count[MAX_IFFS];
int team_ships[MAX_IFFS][MAX_SHIPS];
ship_obj *moveup;
ship *shipp;
// zero out stuff for each team
memset(team_count, 0, MAX_IFFS * sizeof(int));
memset(Ship_visibility_by_team, 0, MAX_IFFS * MAX_SHIPS * sizeof(ubyte));
// Go through list of ships and mark those visible for their own team
for (moveup = GET_FIRST(&Ship_obj_list); moveup != END_OF_LIST(&Ship_obj_list); moveup = GET_NEXT(moveup))
{
// make sure its a valid ship
if ((Objects[moveup->objnum].type != OBJ_SHIP) || (Objects[moveup->objnum].instance < 0))
continue;
// get a handle to the ship
int ship_num = Objects[moveup->objnum].instance;
shipp = &Ships[ship_num];
// ignore dying, departing, or arriving ships
if ((shipp->flags & SF_DYING) || (shipp->flags & SF_DEPARTING) || (shipp->flags & SF_ARRIVING))
continue;
// check if ship is flagged as invisible
if (shipp->flags & SF_HIDDEN_FROM_SENSORS)
continue;
// check if ship is stealthed and friendly-invisible
if ((shipp->flags2 & SF2_STEALTH) && (shipp->flags2 & SF2_FRIENDLY_STEALTH_INVIS))
continue;
Ship_visibility_by_team[shipp->team][ship_num] = 1;
team_ships[shipp->team][team_count[shipp->team]] = ship_num;
team_count[shipp->team]++;
}
int idx, en_idx, cur_count, en_count;
int *cur_team_ships, *en_team_ships;
// Do for all teams that cooperate with visibility
for (int cur_team = 0; cur_team < MAX_IFFS; cur_team++)
{
// set up current team
cur_count = team_count[cur_team];
cur_team_ships = team_ships[cur_team];
// short circuit if team has no presence
if (cur_count == 0)
continue; // Goober5000 10/06/2005 changed from break; probably a bug
// check against all enemy teams
for (int en_team = 0; en_team < MAX_IFFS; en_team++)
{
// NOTE: we no longer skip our own team because we must adjust visibility for friendly-stealth-invisible ships
// if (en_team == cur_team)
// continue;
// set up enemy team
en_count = team_count[en_team];
en_team_ships = team_ships[en_team];
// check if current team can see enemy team's ships
for (en_idx = 0; en_idx < en_count; en_idx++)
{
// for each ship on other team
for (idx = 0; idx < cur_count; idx++)
{
// ignore nav buoys and cargo containers
if (Ship_info[Ships[cur_team_ships[idx]].ship_info_index].flags & (SIF_CARGO | SIF_NAVBUOY))
{
continue;
}
// check against each ship on my team (and AWACS only once)
if (awacs_get_level(&Objects[Ships[en_team_ships[en_idx]].objnum], &Ships[cur_team_ships[idx]], (idx == 0)) > 1.0f)
{
Ship_visibility_by_team[cur_team][en_team_ships[en_idx]] = 1;
break;
}
}
}
}
}
}
// Determine is ship is visible by team
// Goober5000 - now accounts for primitive sensors
int ship_is_visible_by_team(object *target, ship *viewer)
{
Assert(target);
Assert(viewer);
Assert(target->type == OBJ_SHIP);
// not visible if viewer has primitive sensors
if (viewer->flags2 & SF2_PRIMITIVE_SENSORS)
return 0;
// not visible if out of range
if ((Hud_max_targeting_range > 0) && (vm_vec_dist_quick(&target->pos, &Objects[viewer->objnum].pos) > Hud_max_targeting_range))
return 0;
// now evaluate this the old way
int ship_num = target->instance;
int team = viewer->team;
return (int)Ship_visibility_by_team[team][ship_num];
}
|