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 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
|
/*
* 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 "cfile/cfile.h"
#include "gamesequence/gamesequence.h"
#include "globalincs/alphacolors.h"
#include "hud/hudmessage.h"
#include "io/timer.h"
#include "mission/missiongoals.h"
#include "mission/missionmessage.h"
#include "mission/missionparse.h"
#include "mission/missiontraining.h"
#include "mod_table/mod_table.h"
#include "network/multi.h"
#include "parse/parselo.h"
#include "parse/sexp.h"
#include "playerman/player.h"
#include "popup/popup.h"
#include "ship/ship.h"
#include "sound/audiostr.h"
#include "sound/sound.h"
#include "weapon/emp.h"
#define MAX_TRAINING_MESSAGE_LINES 10
#define TRAINING_MESSAGE_WINDOW_WIDTH 266
#define TRAINING_LINE_WIDTH 250 // width in pixels of actual text
#define TRAINING_TIMING 150 // milliseconds per character to display messages
#define TRAINING_TIMING_BASE 1000 // Minimum milliseconds to display any message
#define TRAINING_OBJ_WND_WIDTH 170 // number of pixels wide window is.
#define TRAINING_OBJ_LINE_WIDTH 150 // number of pixels wide text can be
#define TRAINING_OBJ_LINES 50 // number of lines to track in objective list
#define TRAINING_OBJ_DISPLAY_LINES 5 // only display this many lines on screen max
#define MAX_TRAINING_MESSAGE_MODS 20
#define TRAINING_MESSAGE_QUEUE_MAX 40
#define TRAINING_OBJ_STATUS_UNKNOWN (1 << 28) // directive status is unknown
#define TRAINING_OBJ_STATUS_KNOWN (1 << 29) // directive status is known (satisfied or failed)
#define TRAINING_OBJ_LINES_KEY (1 << 30) // flag indicating line describes the key associated with objective
#define TRAINING_OBJ_LINES_EVENT_STATUS_MASK (TRAINING_OBJ_STATUS_KNOWN | TRAINING_OBJ_STATUS_UNKNOWN)
#define TRAINING_OBJ_LINES_MASK(n) (Training_obj_lines[n] & 0xffff)
#define TMMOD_NORMAL 0
#define TMMOD_BOLD 1
typedef struct {
char *pos;
int mode; // what function to perform at given position (TMMOD_*)
} training_message_mods; // training message modifiers
typedef struct {
int num;
int timestamp;
int length;
char *special_message;
} training_message_queue;
char Training_buf[TRAINING_MESSAGE_LENGTH];
const char *Training_lines[MAX_TRAINING_MESSAGE_LINES]; // Training message split into lines
int Training_line_lengths[MAX_TRAINING_MESSAGE_LINES];
char Training_voice_filename[NAME_LENGTH];
int Max_directives = TRAINING_OBJ_DISPLAY_LINES;
int Training_message_timestamp;
int Training_message_method = 1;
int Training_num_lines = 0;
int Training_voice = -1;
int Training_voice_type;
int Training_voice_handle;
int Training_flag = 0;
int Training_failure = 0;
int Training_message_queue_count = 0;
int Training_bind_warning = -1; // Missiontime at which we last gave warning
int Training_message_visible;
training_message_queue Training_message_queue[TRAINING_MESSAGE_QUEUE_MAX];
// coordinates for training messages
int Training_message_window_coords[GR_NUM_RESOLUTIONS][2] = {
{ 174, 40 },
{ 379, 125 }
};
// coordinates for "directives" window on hud
int Training_obj_window_coords[GR_NUM_RESOLUTIONS][2] = {
{ 0, 187 },
{ 0, 287 }
};
// training objectives global vars.
int Training_obj_num_lines;
int Training_obj_lines[TRAINING_OBJ_LINES];
training_message_mods Training_message_mods[MAX_TRAINING_MESSAGE_MODS];
// local module prototypes
void training_process_message(char *message);
void message_translate_tokens(char *buf, char *text);
#define NUM_DIRECTIVE_GAUGES 3
static hud_frames Directive_gauge[NUM_DIRECTIVE_GAUGES];
static int Directive_frames_loaded = 0;
#define DIRECTIVE_H 9
#define DIRECTIVE_X 5
#define NUM_DIRECTIVE_COORDS 3
#define DIRECTIVE_COORDS_TOP 0
#define DIRECTIVE_COORDS_MIDDLE 1
#define DIRECTIVE_COORDS_TITLE 2
HudGaugeDirectives::HudGaugeDirectives():
HudGauge(HUD_OBJECT_DIRECTIVES, HUD_DIRECTIVES_VIEW, false, true, (VM_EXTERNAL | VM_DEAD_VIEW | VM_WARP_CHASE | VM_PADLOCK_ANY | VM_OTHER_SHIP), 255, 255, 255)
{
}
void HudGaugeDirectives::initHeaderOffsets(int x, int y)
{
header_offsets[0] = x;
header_offsets[1] = y;
}
void HudGaugeDirectives::initMiddleFrameOffsetY(int y)
{
middle_frame_offset_y = y;
}
void HudGaugeDirectives::initTextStartOffsets(int x, int y)
{
text_start_offsets[0] = x;
text_start_offsets[1] = y;
}
void HudGaugeDirectives::initTextHeight(int h)
{
text_h = h;
}
void HudGaugeDirectives::initMaxLineWidth(int w)
{
max_line_width = w;
}
void HudGaugeDirectives::initBottomBgOffset(int offset)
{
bottom_bg_offset = offset;
}
void HudGaugeDirectives::initBitmaps(char *fname_top, char *fname_middle, char *fname_bottom)
{
directives_top.first_frame = bm_load_animation(fname_top, &directives_top.num_frames);
if ( directives_top.first_frame < 0 ) {
Warning(LOCATION,"Cannot load hud ani: %s\n", fname_top);
}
directives_middle.first_frame = bm_load_animation(fname_middle, &directives_middle.num_frames);
if ( directives_middle.first_frame < 0 ) {
Warning(LOCATION,"Cannot load hud ani: %s\n", fname_middle);
}
directives_bottom.first_frame = bm_load_animation(fname_bottom, &directives_bottom.num_frames);
if ( directives_bottom.first_frame < 0 ) {
Warning(LOCATION,"Cannot load hud ani: %s\n", fname_bottom);
}
}
bool HudGaugeDirectives::canRender()
{
if (sexp_override) {
return false;
}
if(hud_disabled_except_messages()) {
return false;
}
if (hud_disabled() && !hud_disabled_except_messages()) {
return false;
}
// force the directives list to display in training missions even if this gauge isn't active.
if(!active && !(The_mission.game_type & MISSION_TYPE_TRAINING))
return false;
if ( !(Game_detail_flags & DETAIL_FLAG_HUD) ) {
return false;
}
if ((Viewer_mode & disabled_views)) {
return false;
}
if(pop_up) {
if(!popUpActive()) {
return false;
}
}
if (gauge_config == HUD_ETS_GAUGE) {
if (Ships[Player_obj->instance].flags2 & SF2_NO_ETS) {
return false;
}
}
return true;
}
void HudGaugeDirectives::pageIn()
{
bm_page_in_aabitmap(directives_top.first_frame, directives_top.num_frames);
bm_page_in_aabitmap(directives_middle.first_frame, directives_middle.num_frames);
bm_page_in_aabitmap(directives_bottom.first_frame, directives_bottom.num_frames);
}
void HudGaugeDirectives::render(float frametime)
{
char buf[256], *second_line;
int i, t, x, y, z, end, offset, bx, by, y_count;
color *c;
if (!Training_obj_num_lines){
return;
}
offset = 0;
end = Training_obj_num_lines;
if (end > Max_directives) {
end = Max_directives;
offset = Training_obj_num_lines - end;
}
// draw top of objective display
setGaugeColor();
renderBitmap(directives_top.first_frame, position[0], position[1]);
// print out title
renderPrintf(position[0] + header_offsets[0], position[1] + header_offsets[1], EG_OBJ_TITLE, XSTR( "directives", 422));
bx = position[0];
by = position[1] + middle_frame_offset_y;
y_count = 0;
for (i=0; i<end; i++) {
x = position[0] + text_start_offsets[0];
y = position[1] + text_start_offsets[1] + y_count * text_h;
z = TRAINING_OBJ_LINES_MASK(i + offset);
c = &Color_normal;
if (Training_obj_lines[i + offset] & TRAINING_OBJ_LINES_KEY) {
message_translate_tokens(buf, Mission_events[z].objective_key_text); // remap keys
c = &Color_bright_green;
} else {
strcpy_s(buf, Mission_events[z].objective_text);
if (Mission_events[z].count){
sprintf(buf + strlen(buf), NOX(" [%d]"), Mission_events[z].count);
}
// if this is a multiplayer tvt game, and this is event is not for my team, don't display it
if((MULTI_TEAM) && (Net_player != NULL)){
if((Mission_events[z].team != -1) && (Net_player->p_info.team != Mission_events[z].team)){
continue;
}
}
switch (mission_get_event_status(z)) {
case EVENT_CURRENT:
c = &Color_bright_white;
break;
case EVENT_FAILED:
c = &Color_bright_red;
break;
case EVENT_SATISFIED:
t = Mission_events[z].satisfied_time;
if (t + i2f(2) > Missiontime) {
if (Missiontime % fl2f(.4f) < fl2f(.2f)){
c = &Color_bright_blue;
} else {
c = &Color_bright_white;
}
} else {
c = &Color_bright_blue;
}
break;
}
}
// maybe split the directives line
second_line = split_str_once(buf, max_line_width);
Assert( second_line != buf );
// blit the background frames
setGaugeColor();
renderBitmap(directives_middle.first_frame, bx, by);
by += text_h;
if ( second_line ) {
renderBitmap(directives_middle.first_frame, bx, by);
by += text_h;
}
// blit the text
gr_set_color_fast(c);
renderString(x, y, EG_OBJ1 + i, buf);
y_count++;
if ( second_line ) {
y = position[1] + text_start_offsets[1] + y_count * text_h;
renderString(x+12, y, EG_OBJ1 + i + 1, second_line);
y_count++;
}
}
// draw the bottom of objective display
setGaugeColor();
renderBitmap(directives_bottom.first_frame, bx, by + bottom_bg_offset);
}
/**
* Mission initializations (called once before a new mission is started)
*/
void training_mission_init()
{
int i;
Assert(!Training_num_lines);
Training_obj_num_lines = 0;
Training_message_queue_count = 0;
Training_failure = 0;
if (Max_directives > TRAINING_OBJ_LINES) {
Max_directives = TRAINING_OBJ_LINES;
}
for (i=0; i<TRAINING_OBJ_LINES; i++)
Training_obj_lines[i] = -1;
// Goober5000
for (i = 0; i < TRAINING_MESSAGE_QUEUE_MAX; i++)
Training_message_queue[i].special_message = NULL;
// The E: This is now handled by the new HUD code. No need to check here.
Directive_frames_loaded = 1;
// only clear player flags if this is actually a training mission
if ( The_mission.game_type & MISSION_TYPE_TRAINING ) {
Player->flags &= ~(PLAYER_FLAGS_MATCH_TARGET | PLAYER_FLAGS_MSG_MODE | PLAYER_FLAGS_AUTO_TARGETING | PLAYER_FLAGS_AUTO_MATCH_SPEED | PLAYER_FLAGS_LINK_PRIMARY | PLAYER_FLAGS_LINK_SECONDARY );
}
}
void training_mission_page_in()
{
int i;
for ( i = 0; i < NUM_DIRECTIVE_GAUGES; i++ ) {
bm_page_in_aabitmap( Directive_gauge[i].first_frame, Directive_gauge[i].num_frames );
}
}
int comp_training_lines_by_born_on_date(const void *m1, const void *m2)
{
int *e1, *e2;
e1 = (int*) m1;
e2 = (int*) m2;
Assert(Mission_events[*e1 & 0xffff].born_on_date != 0);
Assert(Mission_events[*e2 & 0xffff].born_on_date != 0);
return (Mission_events[*e1 & 0xffff].born_on_date - Mission_events[*e2 & 0xffff].born_on_date);
}
/**
* Sort list of training events
*
* Sort on EVENT_CURRENT and born on date, for other events (EVENT_SATISFIED, EVENT_FAILED) sort on born on date
*/
#define MIN_SATISFIED_TIME 5
#define MIN_FAILED_TIME 7
void sort_training_objectives()
{
int i, event_status, offset;
// start by sorting on born on date
insertion_sort(Training_obj_lines, Training_obj_num_lines, sizeof(int), comp_training_lines_by_born_on_date);
// get the index of the first directive that will be displayed
// if less than 0, display all lines
offset = Training_obj_num_lines - Max_directives;
if (offset <= 0) {
return;
}
// go through lines 0 to offset-1 and check if there are any CURRENT or RECENTLY_KNOWN events that should be shown
int num_offset_events = 0;
for (i=0; i<offset; i++) {
event_status = mission_get_event_status(TRAINING_OBJ_LINES_MASK(i));
// if this is a multiplayer tvt game, and this is event is for another team, don't touch it
if(MULTI_TEAM && (Net_player != NULL)){
if((Mission_events[TRAINING_OBJ_LINES_MASK(i)].team != -1) && (Net_player->p_info.team != Mission_events[TRAINING_OBJ_LINES_MASK(i)].team)){
continue ;
}
}
if (event_status == EVENT_CURRENT) {
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_UNKNOWN;
num_offset_events++;
} else if (event_status == EVENT_SATISFIED) {
if (f2i(Missiontime - Mission_events[TRAINING_OBJ_LINES_MASK(i)].satisfied_time) < MIN_SATISFIED_TIME) {
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_UNKNOWN;
num_offset_events++;
} else {
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_KNOWN;
}
} else if (event_status == EVENT_FAILED) {
if (f2i(Missiontime - Mission_events[TRAINING_OBJ_LINES_MASK(i)].satisfied_time) < MIN_FAILED_TIME) {
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_UNKNOWN;
num_offset_events++;
} else {
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_KNOWN;
}
}
}
// if there are no directives which should be moved, we're done
if (num_offset_events == 0) {
return;
}
// go through lines offset to Training_obj_num_lines to check which should be shown, since some will need to be bumped
for (i=offset; i<Training_obj_num_lines; i++) {
event_status = mission_get_event_status(TRAINING_OBJ_LINES_MASK(i));
// if this is a multiplayer tvt game, and this is event is for another team, it can be bumped
if(MULTI_TEAM && (Net_player != NULL)){
if((Mission_events[TRAINING_OBJ_LINES_MASK(i)].team != -1) && (Net_player->p_info.team != Mission_events[TRAINING_OBJ_LINES_MASK(i)].team)){
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_KNOWN;
continue ;
}
}
if (event_status == EVENT_CURRENT) {
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_UNKNOWN;
} else if (event_status == EVENT_SATISFIED) {
if (f2i(Missiontime - Mission_events[TRAINING_OBJ_LINES_MASK(i)].satisfied_time) < MIN_SATISFIED_TIME) {
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_UNKNOWN;
} else {
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_KNOWN;
}
} else if (event_status == EVENT_FAILED) {
if (f2i(Missiontime - Mission_events[TRAINING_OBJ_LINES_MASK(i)].satisfied_time) < MIN_FAILED_TIME) {
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_UNKNOWN;
} else {
Training_obj_lines[i] |= TRAINING_OBJ_STATUS_KNOWN;
}
}
}
int slot_idx, unkn_vis, last_directive;
// go through list and bump as needed
for (i=0; i<num_offset_events; i++) {
// find most recent directive that would not be shown
for (unkn_vis=offset-1; unkn_vis>=0; unkn_vis--) {
if (Training_obj_lines[unkn_vis] & TRAINING_OBJ_STATUS_UNKNOWN) {
break;
}
}
// find first slot that can be bumped
// look at the last (N-4 to N) positions
for (slot_idx=0; slot_idx<Max_directives; slot_idx++) {
if ( Training_obj_lines[i+offset] & TRAINING_OBJ_STATUS_KNOWN ) {
break;
}
}
// shift and replace (mark old one as STATUS_KNOWN)
// store the directive that won't be shown
last_directive = Training_obj_lines[Training_obj_num_lines-1];
for (int j=slot_idx; j>0; j--) {
Training_obj_lines[j+offset-1] = Training_obj_lines[j+offset-2];
}
Training_obj_lines[offset] = Training_obj_lines[unkn_vis];
Training_obj_lines[unkn_vis] = last_directive;
Training_obj_lines[unkn_vis] &= ~TRAINING_OBJ_LINES_EVENT_STATUS_MASK;
Training_obj_lines[unkn_vis] |= TRAINING_OBJ_STATUS_KNOWN;
}
// remove event status
for (i=0; i<Training_obj_num_lines; i++) {
Training_obj_lines[i] &= ~TRAINING_OBJ_LINES_EVENT_STATUS_MASK;
}
}
/**
* Maintains the objectives listing, adding, removing and updating items
*
* Called at same rate as goals/events are evaluated.
*/
void training_check_objectives()
{
int i, event_idx, event_status;
Training_obj_num_lines = 0;
for (event_idx=0; event_idx<Num_mission_events; event_idx++) {
event_status = mission_get_event_status(event_idx);
if ( (event_status != EVENT_UNBORN) && Mission_events[event_idx].objective_text && (timestamp() > Mission_events[event_idx].born_on_date + Directive_wait_time) ) {
if (!Training_failure || !strnicmp(Mission_events[event_idx].name, XSTR( "Training failed", 423), 15)) {
// check for the actual objective
for (i=0; i<Training_obj_num_lines; i++) {
if (Training_obj_lines[i] == event_idx) {
break;
}
}
// not in objective list, need to add it
if (i == Training_obj_num_lines) {
if (Training_obj_num_lines == TRAINING_OBJ_LINES) {
// objective list full, remove topmost objective
for (i=1; i<TRAINING_OBJ_LINES; i++) {
Training_obj_lines[i - 1] = Training_obj_lines[i];
}
Training_obj_num_lines--;
}
// add the new directive
Training_obj_lines[Training_obj_num_lines++] = event_idx;
}
// now check for the associated keypress text
for (i=0; i<Training_obj_num_lines; i++) {
if (Training_obj_lines[i] == (event_idx | TRAINING_OBJ_LINES_KEY)) {
break;
}
}
// if there is a keypress message with directive, process that too.
if (Mission_events[event_idx].objective_key_text) {
if (event_status == EVENT_CURRENT) {
// not in objective list, need to add it
if (i == Training_obj_num_lines) {
if (Training_obj_num_lines == TRAINING_OBJ_LINES) {
// objective list full, remove topmost objective
for (i=1; i<Training_obj_num_lines; i++) {
Training_obj_lines[i - 1] = Training_obj_lines[i];
}
Training_obj_num_lines--;
}
// mark objective as having key text
Training_obj_lines[Training_obj_num_lines++] = event_idx | TRAINING_OBJ_LINES_KEY;
}
} else {
// message with key press text is no longer valid, so remove it
if (i < Training_obj_num_lines) {
for (; i<Training_obj_num_lines - 1; i++) {
Training_obj_lines[i] = Training_obj_lines[i + 1];
}
Training_obj_num_lines--;
}
}
}
}
}
}
// now sort list of events
// sort on EVENT_CURRENT and born on date, for other events (EVENT_SATISFIED, EVENT_FAILED) sort on born on date
sort_training_objectives();
}
/**
* Do cleanup when leaving a mission
*/
void training_mission_shutdown()
{
int i;
if (Training_voice >= 0) {
if (Training_voice_type) {
audiostream_close_file(Training_voice_handle, 0);
} else {
snd_stop(Training_voice_handle);
}
}
// Goober5000
for (i = 0; i < TRAINING_MESSAGE_QUEUE_MAX; i++)
{
if (Training_message_queue[i].special_message != NULL)
{
vm_free(Training_message_queue[i].special_message);
Training_message_queue[i].special_message = NULL;
}
}
Training_voice = -1;
Training_num_lines = Training_obj_num_lines = 0;
*Training_buf = 0;
}
/**
* Translates special tokens. Handles one token only.
*/
char *translate_message_token(char *str)
{
if (!stricmp(str, NOX("wp"))) {
sprintf(str, "%d", Training_context_goal_waypoint + 1);
return str;
}
return NULL;
}
/**
* Translates all special tokens in a message, producing the new finalized message to be displayed
*/
void message_translate_tokens(char *buf, char *text)
{
char temp[40], *toke1, *toke2, *ptr;
int r;
*buf = 0;
toke1 = strchr(text, '$');
toke2 = strchr(text, '#');
while (toke1 || toke2) { // is either token types present?
if (!toke2 || (toke1 && (toke1 < toke2))) { // found $ before #
strncpy(buf, text, toke1 - text + 1); // copy text up to token
buf += toke1 - text + 1;
text = toke1 + 1; // advance pointers past processed data
toke2 = strchr(text, '$');
if (!toke2 || ((toke2 - text) == 0)) // No second one, or possibly a double?
break;
// make sure we aren't going to have any type of out-of-bounds issues
if ( ((toke2 - text) < 0) || ((toke2 - text) >= (ptr_s)sizeof(temp)) ) {
Int3();
} else {
strncpy(temp, text, toke2 - text); // isolate token into seperate buffer
temp[toke2 - text] = 0; // null terminate string
ptr = translate_key(temp); // try and translate key
if (ptr) { // was key translated properly?
if (!stricmp(ptr, NOX("none")) && (Training_bind_warning != Missiontime)) {
if ( The_mission.game_type & MISSION_TYPE_TRAINING ) {
r = popup(PF_TITLE_BIG | PF_TITLE_RED, 2, XSTR( "&Bind Control", 424), XSTR( "&Abort mission", 425),
XSTR( "Warning\nYou have no control bound to the action \"%s\". You must do so before you can continue with your training.", 426),
XSTR(Control_config[Failed_key_index].text, CONTROL_CONFIG_XSTR + Failed_key_index));
if (r) { // do they want to abort the mission?
gameseq_post_event(GS_EVENT_END_GAME);
return;
}
gameseq_post_event(GS_EVENT_CONTROL_CONFIG); // goto control config screen to bind the control
}
}
buf--; // erase the $
strcpy(buf, ptr); // put translated key in place of token
buf += strlen(buf);
text = toke2 + 1;
}
}
} else {
strncpy(buf, text, toke2 - text + 1); // copy text up to token
buf += toke2 - text + 1;
text = toke2 + 1; // advance pointers past processed data
toke1 = strchr(text, '#');
if (!toke1 || ((toke1 - text) == 0)) // No second one, or possibly a double?
break;
// make sure we aren't going to have any type of out-of-bounds issues
if ( ((toke1 - text) < 0) || ((toke1 - text) >= (ptr_s)sizeof(temp)) ) {
Int3();
} else {
strncpy(temp, text, toke1 - text); // isolate token into seperate buffer
temp[toke1 - text] = 0; // null terminate string
ptr = translate_message_token(temp); // try and translate key
if (ptr) { // was key translated properly?
buf--; // erase the #
strcpy(buf, ptr); // put translated key in place of token
buf += strlen(buf);
text = toke1 + 1;
}
}
}
toke1 = strchr(text, '$');
toke2 = strchr(text, '#');
}
strcpy(buf, text);
return;
}
/**
* Plays the voice file associated with a training message.
*
* Automatically streams the file from disk if it's over 100k, otherwise plays it as
* a normal file in memory. Returns -1 if it didn't play, otherwise index of voice
*/
int message_play_training_voice(int index)
{
int len;
CFILE *fp;
if (index < 0) {
if (Training_voice >= 0) {
if (Training_voice_type) {
audiostream_close_file(Training_voice_handle, 0);
} else {
snd_stop(Training_voice_handle);
}
}
Training_voice = -1;
return -1;
}
if (Message_waves[index].num < 0) {
fp = cfopen(Message_waves[index].name, "rb");
if (!fp)
return -1;
len = cfilelength(fp);
cfclose(fp);
if (len > 100000) {
if ((Training_voice < 0) || !Training_voice_type || (Training_voice != index)) {
if (Training_voice >= 0) {
if (Training_voice_type) {
if (Training_voice == index)
audiostream_stop(Training_voice_handle, 1, 0);
else
audiostream_close_file(Training_voice_handle, 0);
} else {
snd_stop(Training_voice_handle);
}
}
if (strnicmp(Message_waves[index].name, NOX("none.wav"), 4)) {
Training_voice_handle = audiostream_open(Message_waves[index].name, ASF_VOICE);
if (Training_voice_handle < 0) {
nprintf(("Warning", "Unable to load voice file %s\n", Message_waves[index].name));
}
}
} // Training_voice should be valid and loaded now
Training_voice_type = 1;
if (Training_voice_handle >= 0)
audiostream_play(Training_voice_handle, (Master_voice_volume * aav_voice_volume), 0);
Training_voice = index;
return Training_voice;
} else {
game_snd tmp_gs;
strcpy_s(tmp_gs.filename, Message_waves[index].name);
Message_waves[index].num = snd_load(&tmp_gs, 0);
if (Message_waves[index].num < 0) {
nprintf(("Warning", "Cannot load message wave: %s. Will not play\n", Message_waves[index].name));
return -1;
}
}
}
if (Training_voice >= 0) {
if (Training_voice_type) {
audiostream_close_file(Training_voice_handle, 0);
} else {
snd_stop(Training_voice_handle);
}
}
Training_voice = index;
if (Message_waves[index].num >= 0)
Training_voice_handle = snd_play_raw(Message_waves[index].num, 0.0f);
else
Training_voice_handle = -1;
Training_voice_type = 0;
return Training_voice;
}
/**
* One time initializations done when we want to display a new training mission.
*
* This does all the processing and setup required to actually display it, including
* starting the voice file playing
*/
void message_training_setup(int m, int length, char *special_message)
{
if ((m < 0) || !Messages[m].message[0]) { // remove current message from the screen
Training_num_lines = 0;
return;
}
// translate tokens in message to the real things
if (special_message == NULL)
message_translate_tokens(Training_buf, Messages[m].message);
else
message_translate_tokens(Training_buf, special_message);
HUD_add_to_scrollback(Training_buf, HUD_SOURCE_TRAINING);
// moved from message_training_display() because we got rid of an extra buffer and we have to determine
// the number of lines earlier to avoid inadvertant modification of Training_buf. - taylor
training_process_message(Training_buf);
Training_num_lines = split_str(Training_buf, TRAINING_LINE_WIDTH, Training_line_lengths, Training_lines, MAX_TRAINING_MESSAGE_LINES);
Assert( Training_num_lines >= 0 );
if (message_play_training_voice(Messages[m].wave_info.index) < 0) {
if (length > 0)
Training_message_timestamp = timestamp(length * 1000);
else
Training_message_timestamp = timestamp(TRAINING_TIMING_BASE + strlen(Messages[m].message) * TRAINING_TIMING); // no voice file playing
} else
Training_message_timestamp = 0;
}
/**
* Add a message to the queue to be sent later
*/
void message_training_queue(char *text, int timestamp, int length)
{
int m;
char temp_buf[TRAINING_MESSAGE_LENGTH];
Assert(Training_message_queue_count < TRAINING_MESSAGE_QUEUE_MAX);
if (Training_message_queue_count < TRAINING_MESSAGE_QUEUE_MAX) {
if (!stricmp(text, NOX("none"))) {
m = -1;
} else {
for (m=0; m<Num_messages; m++)
if (!stricmp(text, Messages[m].name))
break;
Assert(m < Num_messages);
if (m >= Num_messages)
return;
}
Training_message_queue[Training_message_queue_count].num = m;
Training_message_queue[Training_message_queue_count].timestamp = timestamp;
Training_message_queue[Training_message_queue_count].length = length;
// Goober5000 - this shouldn't happen, but let's be safe
if (Training_message_queue[Training_message_queue_count].special_message != NULL)
{
Int3();
vm_free(Training_message_queue[Training_message_queue_count].special_message);
Training_message_queue[Training_message_queue_count].special_message = NULL;
}
// Goober5000 - replace variables if necessary
strcpy_s(temp_buf, Messages[m].message);
if (sexp_replace_variable_names_with_values(temp_buf, MESSAGE_LENGTH))
Training_message_queue[Training_message_queue_count].special_message = vm_strdup(temp_buf);
Training_message_queue_count++;
}
}
/**
* Removes current message from the queue
*/
void message_training_remove_from_queue(int idx)
{
// we're overwriting all messages with the next message, but to
// avoid memory leaks, we should free the special message entry
if (Training_message_queue[idx].special_message != NULL)
{
vm_free(Training_message_queue[idx].special_message);
Training_message_queue[idx].special_message = NULL;
}
// replace current message with the one above it, etc.
for (int j=idx+1; j<Training_message_queue_count; j++)
Training_message_queue[j - 1] = Training_message_queue[j];
// delete the topmost message
Training_message_queue_count--;
Training_message_queue[Training_message_queue_count].length = -1;
Training_message_queue[Training_message_queue_count].num = -1;
Training_message_queue[Training_message_queue_count].timestamp = -1;
Training_message_queue[Training_message_queue_count].special_message = NULL; // not a memory leak because we copied the pointer
}
/**
* Check the training message queue to see if we should play a new message yet or not.
*/
void message_training_queue_check()
{
int i, iship_num;
// get the instructor's ship.
iship_num = ship_name_lookup(NOX("instructor"));
// if the instructor is dying or departing, do nothing
if ( iship_num != -1 ) // added by Goober5000
if (Ships[iship_num].flags & (SF_DYING | SF_DEPARTING))
return;
if (Training_failure)
return;
for (i=0; i<Training_message_queue_count; i++) {
if (timestamp_elapsed(Training_message_queue[i].timestamp)) {
message_training_setup(Training_message_queue[i].num, Training_message_queue[i].length, Training_message_queue[i].special_message);
// remove this message from the queue now.
message_training_remove_from_queue(i);
i--;
}
}
}
void message_training_update_frame()
{
int z;
if ((Viewer_mode & (VM_EXTERNAL | VM_DEAD_VIEW | VM_WARP_CHASE | VM_PADLOCK_ANY ))) {
return;
}
if ( hud_disabled() && !hud_disabled_except_messages()) {
return;
}
Training_message_visible = 0;
message_training_queue_check();
if (Training_failure){
return;
}
if (timestamp_elapsed(Training_message_timestamp) || !strlen(Training_buf)){
return;
}
// the code that preps the training message and counts the number of lines
// has been moved to message_training_setup()
if (Training_num_lines <= 0){
return;
}
Training_message_visible = 1;
if ((Training_voice >= 0) && (Training_num_lines > 0) && !(Training_message_timestamp)) {
if (Training_voice_type)
z = audiostream_is_playing(Training_voice_handle);
else
z = snd_is_playing(Training_voice_handle);
if (!z)
Training_message_timestamp = timestamp(2000); // 2 second delay
}
Training_message_method = 0;
}
HudGaugeTrainingMessages::HudGaugeTrainingMessages():
HudGauge(HUD_OBJECT_TRAINING_MESSAGES, HUD_DIRECTIVES_VIEW, false, true, VM_EXTERNAL | VM_DEAD_VIEW | VM_WARP_CHASE | VM_PADLOCK_ANY | VM_OTHER_SHIP, 255, 255, 255)
{
}
bool HudGaugeTrainingMessages::canRender()
{
if (hud_disabled() && !hud_disabled_except_messages()) {
return false;
}
if ( !(Game_detail_flags & DETAIL_FLAG_HUD) ) {
return false;
}
if ((Viewer_mode & disabled_views)) {
return false;
}
if(pop_up) {
if(!popUpActive()) {
return false;
}
}
return true;
}
void HudGaugeTrainingMessages::pageIn()
{
}
/**
* Displays (renders) the training message to the screen
*/
void HudGaugeTrainingMessages::render(float frametime)
{
const char *str;
char buf[256];
int i, z, x, y, height, mode, count;
if (Training_failure){
return;
}
if (timestamp_elapsed(Training_message_timestamp) || !strlen(Training_buf)){
return;
}
if (Training_num_lines <= 0){
return;
}
gr_set_screen_scale(base_w, base_h);
height = gr_get_font_height();
gr_set_shader(&Training_msg_glass);
gr_shade(position[0], position[1], TRAINING_MESSAGE_WINDOW_WIDTH, Training_num_lines * height + height);
gr_reset_screen_scale();
gr_set_color_fast(&Color_bright_blue);
mode = count = 0;
for (i=0; i<Training_num_lines; i++) { // loop through all lines of message
str = Training_lines[i];
z = 0;
x = position[0] + (TRAINING_MESSAGE_WINDOW_WIDTH - TRAINING_LINE_WIDTH) / 2;
y = position[1] + i * height + height / 2 + 1;
while ((str - Training_lines[i]) < Training_line_lengths[i]) { // loop through each character of each line
if ((count < MAX_TRAINING_MESSAGE_MODS) && (str == Training_message_mods[count].pos)) {
buf[z] = 0;
renderPrintf(x, y, buf);
gr_get_string_size(&z, NULL, buf);
x += z;
z = 0;
mode = Training_message_mods[count++].mode;
switch (mode) {
case TMMOD_NORMAL:
gr_set_color_fast(&Color_bright_blue);
break;
case TMMOD_BOLD:
gr_set_color_fast(&Color_white);
break;
}
}
buf[z++] = *str++;
}
if (z) {
buf[z] = 0;
renderPrintf(x, y, "%s", buf);
}
}
}
/**
* Processes a new training message to get hilighting information and store it in internal structures.
*/
void training_process_message(char *message)
{
int count;
char *src, *dest, buf[TRAINING_MESSAGE_LENGTH];
message_translate_tokens(buf, message);
count = 0;
src = buf;
dest = Training_buf;
while (*src) {
if (!strnicmp(src, NOX("<b>"), 3)) {
Assert(count < MAX_TRAINING_MESSAGE_MODS);
src += 3;
Training_message_mods[count].pos = dest;
Training_message_mods[count].mode = TMMOD_BOLD;
count++;
}
if (!strnicmp(src, NOX("</b>"), 4)) {
Assert(count < MAX_TRAINING_MESSAGE_MODS);
src += 4;
Training_message_mods[count].pos = dest;
Training_message_mods[count].mode = TMMOD_NORMAL;
count++;
}
*dest++ = *src++;
}
*dest = 0;
if (count < MAX_TRAINING_MESSAGE_MODS)
Training_message_mods[count].pos = NULL;
}
void training_fail()
{
Training_failure = 1;
// JasonH: Add code here to suspend training and display a directive to warp out.
// Suspend training.
// Give directive to warp out.
// Also ensure that a special failure debriefing is given. Must mention firing at instructor.
// Ask Sandeep to write it (or you can).
}
|