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 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
|
/* OpenCP Module Player
* copyright (c) 1994-'10 Niklas Beisert <nbeisert@physik.tu-muenchen.de>
* copyright (c) 2004-'24 Stian Skjelstad <stian.skjelstad@gmail.com>
*
* PMain - main module (loads and inits all startup modules)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* revision history: (please note changes here)
* -nb980510 Niklas Beisert <nbeisert@physik.tu-muenchen.de>
* -first release
* -kb980717 Tammo Hinrichs <opencp@gmx.net>
* - plScreenChanged variable to notify the interfaces when the
* screen mode has changed
* - added command line help
* - replaced INI link symbol reader with _dllinfo reader
* - added screen mode check for avoiding redundant mode changes
* - various minor changes
* -fd981016 Felix Domke <tmbinc@gmx.net>
* - Win32-Port
* -doj981213 Dirk Jagdmann <doj@cubic.org>
* - added the nice end ansi
* -fd981220 Felix Domke <tmbinc@gmx.net>
* - added stack dump and fault-in-faultproc-check
* -kb981224 Tammo Hinrichs <kb@ms.demo.org>
* - cleaned up dos shell code a bit (but did not help much)
* -doj990421 Dirk Jagdmann <doj@cubic.org>
* - changed conSave(), conRestore, conInit()
* -fd990518 Felix Domke <tmbinc@gmx.net>
* - clearscreen now works in higher-modes too. dos shell now switches
* to mode 3
* -ss040613 Stian Skjelstad <stian@nixia.no>
* - rewritten for unix
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "types.h"
#include "pmain.h"
#include "stuff/err.h"
#include "stuff/framelock.h"
#include "stuff/poutput.h"
#include "plinkman.h"
#include "psetting.h"
struct mainstruct *ocpmain = 0;
static int cmdhlp(void)
{
if (cfGetProfileString("commandline", "h", 0) || cfGetProfileString("commandline", "?", 0) || cfGetProfileString("commandline--", "help", 0))
{
printf("\nopencp command line help\n");
printf("Usage: ocp [<options>]* [@<playlist>]* [<modulename>]* \n");
printf("\nOptions:\n");
printf("-h : show this help\n");
printf("-c<name> : use specific configuration\n");
printf("-f : fileselector settings\n");
printf(" r[0|1] : remove played files from module list\n");
printf(" o[0|1] : don't scramble module list order\n");
printf(" l[0|1] : loop modules\n");
printf("-v : sound settings\n");
printf(" a{0..800} : set amplification\n");
printf(" v{0..100} : set volume\n");
printf(" b{-100..100} : set balance\n");
printf(" p{-100..100} : set panning\n");
printf(" r{-100..100} : set reverb\n");
printf(" c{-100..100} : set chorus\n");
printf(" s{0|1} : set surround on/off\n");
printf(" f{0..2} : set filter (0=off, 1=AOI, 2=FOI)\n");
printf("-s : device settings\n");
printf(" p<name> : use specific player device\n");
printf(" w<name> : use specific wavetable device\n");
printf(" r{0..64000} : sample at specific rate\n");
printf(" 8 : play/sample/mix as 8bit\n");
printf(" m : play/sample/mix mono\n");
printf("-p : quit when playlist is empty\n");
printf("-d : force display driver\n");
printf(" curses : ncurses driver\n");
#ifdef HAVE_X11
printf(" x11 : x11 driver\n");
#endif
#ifdef HAVE_FRAMEBUFFER
printf(" vcsa : vcsa/fb linux console driver\n");
#endif
#ifdef HAVE_SDL
printf(" sdl : SDL video driver\n");
#endif
#ifdef HAVE_SDL2
printf(" sdl2 : SDL2 video driver\n");
#endif
printf("\nExample : ocp -fl0,r1 -vf2 -spdevpdisk -sr48000 ftstar.xm\n");
printf(" (for nice HD rendering of modules)\n");
return errHelpPrinted;
}
return errOk;
}
extern char compiledate[], compiletime[]/*, compiledby[]*/;
static int init_modules(int argc, char *argv[])
{
int ret;
if ((ret=cmdhlp()))
return ret;
#ifndef _WIN32
if (!geteuid())
{
if (getuid())
{
fprintf(stderr, "Changing user to non-root\n");
if (seteuid(getuid()))
{
perror("seteuid()");
return errGen;
}
}
}
if (!getegid())
{
if (getgid())
{
fprintf(stderr, "Changing group to non-root\n");
if (setegid(getgid()))
{
perror("setegid()");
return errGen;
}
}
}
#endif
framelock_init ();
lnkInit();
fprintf(stderr, "linking default objects...\n");
cfConfigSec=cfGetProfileString("CommandLine", "c", "defaultconfig");
{
int epoch = cfGetProfileInt("version", "epoch", 0, 10);
if (epoch <= 20060815)
{
char temp[1024];
fprintf(stderr, "ocp.ini update (0.1.10) adds devpALSA to [sound] playerdevices=....\n");
snprintf(temp, sizeof(temp), "devpALSA %s", cfGetProfileString("sound", "playerdevices", ""));
cfSetProfileString("sound", "playerdevices", temp);
fprintf(stderr, "ocp.ini update (0.1.10) adds [sound] digitalcd=on\n");
cfSetProfileBool("sound", "digitalcd", 1);
fprintf(stderr, "ocp.ini update (0.1.10) adds AY to [fileselector] modextensions=....\n");
snprintf(temp, sizeof(temp), "%s AY", cfGetProfileString("fileselector", "modextensions", ""));
cfSetProfileString("fileselector", "modextensions", temp);
fprintf(stderr, "ocp.ini update (0.1.10) adds [devpALSA]\n");
cfSetProfileString("devpALSA", "link", "devpalsa");
cfSetProfileInt("devpALSA", "keep", 1, 10);
fprintf(stderr, "ocp.ini update (0.1.10) adds [filetype 37]\n");
cfSetProfileInt("filetype 37", "color", 6, 10);
cfSetProfileString("filetype 37", "name", "AY");
cfSetProfileString("filetype 37", "interface", "plOpenCP");
cfSetProfileString("filetype 37", "pllink", "playay");
cfSetProfileString("filetype 37", "player", "ayPlayer");
}
if (epoch <= 20070712)
{
char temp[1024];
fprintf(stderr, "ocp.ini update (0.1.13/0.1.14) adds devpCA to [sound] playerdevices=....\n");
snprintf(temp, sizeof(temp), "devpCA %s", cfGetProfileString("sound", "playerdevices", ""));
cfSetProfileString("sound", "playerdevices", temp);
fprintf(stderr, "ocp.ini update (0.1.13/0.1.14) adds [devpCA]\n");
cfSetProfileString("devpCA", "link", "devpcoreaudio");
fprintf(stderr, "ocp.ini update (0.1.14) changed [devsOSS] revstereo to off\nn");
cfSetProfileBool("devsOSS", "revstereo", 0);
fprintf(stderr, "ocp.ini update (0.1.14) adds [filetype 38]\n");
cfSetProfileInt("filetype 38", "color", 6, 10);
cfSetProfileString("filetype 38", "name", "FLA");
cfSetProfileString("filetype 38", "interface", "plOpenCP");
cfSetProfileString("filetype 38", "pllink", "playflac");
cfSetProfileString("filetype 38", "player", "flacPlayer");
}
if (epoch <= 20081117)
{
fprintf(stderr, "ocp.ini update (0.1.17) removes [general] autoload=....\n");
cfRemoveEntry("general", "autoload");
fprintf(stderr, "ocp.ini update (0.1.16/0.1.17) removes [general] link=....\n");
cfRemoveEntry("general", "link");
fprintf(stderr, "ocp.ini update (0.1.16/0.1.17) removes [defaultconfig] link=....\n");
cfRemoveEntry("defaultconfig", "link");
fprintf(stderr, "ocp.ini update (0.1.16) renames [x11] framebuffer to autodetect\n");
cfSetProfileBool("x11", "autodetect", cfGetProfileBool("x11", "framebuffer", 1, 1));
cfRemoveEntry("x11", "framebuffer");
fprintf(stderr, "ocp.ini update (0.1.16) adds [x11] font=1\n");
cfSetProfileInt("x11", "font", cfGetProfileInt("x11", "font", 1, 10), 10);
fprintf(stderr, "ocp.ini update (0.1.16) adds [x11] xvidmode=on\n");
cfSetProfileBool("x11", "xvidmode", cfGetProfileBool("x11", "xvidmode", 1, 1));
}
if (epoch <= 20090208)
{
fprintf(stderr, "ocp.ini update (0.1.18) removes [driver] keep=1\n");
cfRemoveEntry("devpALSA", "keep");
}
if (epoch <= 20100515)
{
fprintf(stderr, "ocp.ini update (0.1.19) adds [filetype 39]\n");
cfSetProfileInt("filetype 39", "color", 6, 10);
cfSetProfileString("filetype 39", "name", "YM");
cfSetProfileString("filetype 39", "interface", "plOpenCP");
cfSetProfileString("filetype 39", "pllink", "playym");
cfSetProfileString("filetype 39", "player", "ymPlayer");
}
if (epoch <= 20100515)
{
const char *temp;
char *new_temp;
temp = cfGetProfileString("fileselector", "modextensions", "");
new_temp = malloc (strlen (temp) + 8);
strcpy (new_temp, temp);
if (!strstr(temp, " YM"))
{
fprintf(stderr, "ocp.ini update (0.1.19) adds YM to [fileselector] modextensions=....\n");
strcat (new_temp, " YM");
}
if (!strstr(temp, " OGA"))
{
fprintf(stderr, "ocp.ini update (0.1.19) adds OGA to [fileselector] modextensions=....\n");
strcat (new_temp, " OGA");
}
cfSetProfileString("fileselector", "modextensions", new_temp);
free (new_temp);
}
if (epoch < 20110319)
{
const char *list;
char temp1[1024];
fprintf(stderr, "ocp.ini update (0.1.21) adds devpSDL\n");
list = cfGetProfileString("sound", "playerdevices", "");
if (strstr(list, "devpSDL"))
{
snprintf(temp1, sizeof(temp1), "%s", list);
} else {
int added = 0;
temp1[0] = 0;
while (1)
{
char drvhand[9];
if (!cfGetSpaceListEntry(drvhand, &list, 8))
break;
if (!strcmp (drvhand, "devpNONE"))
{
added = 1;
if (strlen(temp1) < 1014)
strcat (temp1, " devpSDL");
}
if (strlen(temp1) < 1014)
{
strcat (temp1, " ");
strcat (temp1, drvhand);
}
}
if (!added)
{
added = 1;
if (strlen(temp1) < 1014)
strcat (temp1, " devpSDL");
}
}
cfSetProfileString("sound", "playerdevices", temp1);
cfSetProfileString("devpSDL", "link", "devpsdl");
}
if (epoch < 20160606)
{
fprintf (stderr, "ocp.ini update (0.2.0), remove wavetostereo and waveratetolerance\n");
cfRemoveEntry("sound", "wavetostereo");
cfRemoveEntry("sound", "waveratetolerance");
}
if (epoch < 20181129)
{
const char *list;
char temp1[1024];
fprintf (stderr, "ocp.ini update (0.2.0), add SDL2 audio driver\n");
list = cfGetProfileString("sound", "playerdevices", "");
if (strstr(list, "devpSDL2"))
{
snprintf(temp1, sizeof(temp1), "%s", list);
} else {
int added = 0;
temp1[0] = 0;
while (1)
{
char drvhand[9];
if (!cfGetSpaceListEntry(drvhand, &list, 8))
break;
if (!strcmp (drvhand, "devpSDL"))
{
added = 1;
if (strlen(temp1) < 1014)
strcat (temp1, " devpSDL2");
}
if (strlen(temp1) < 1014)
{
strcat (temp1, " ");
strcat (temp1, drvhand);
}
}
if (!added)
{
added = 1;
if (strlen(temp1) < 1014)
strcat (temp1, " devpSDL2");
}
}
cfSetProfileString("sound", "playerdevices", temp1);
cfSetProfileString("devpSDL2", "link", "devpsdl2");
}
if (epoch < 20190801)
{
fprintf (stderr, "ocp.ini update (0.2.0) replaces playgmi with playtimidity for playback of MIDI files\n");
if (!strcmp (cfGetProfileString ("filetype 16", "pllink", "playgmi"), "playgmi"))
{
cfSetProfileString ("filetype 16", "pllink", "playtimidity");
cfSetProfileString ("filetype 16", "player", "timidityPlayer");
}
if (!strcmp (cfGetProfileString ("filetype 18", "pllink", "playgmi"), "playgmi"))
{
cfSetProfileString ("filetype 18", "pllink", "playtimidity");
cfSetProfileString ("filetype 18", "player", "timidityPlayer");
}
}
if (epoch < 20190815)
{
fprintf(stderr, "ocp.ini update (0.2.0) adds [filetype 40]\n");
cfSetProfileInt("filetype 40", "color", 6, 10);
cfSetProfileString("filetype 40", "name", "STM");
cfSetProfileString("filetype 40", "interface", "plOpenCP");
cfSetProfileString("filetype 40", "pllink", "playgmd");
cfSetProfileString("filetype 40", "player", "gmdPlayer");
cfSetProfileString("filetype 40", "ldlink", "loadstm");
cfSetProfileString("filetype 40", "loader", "mpLoadSTM");
}
if (epoch < 20190815)
{
const char *temp;
char *new_temp;
temp = cfGetProfileString("fileselector", "modextensions", "");
new_temp = malloc (strlen (temp) + 5);
strcpy (new_temp, temp);
if (!strstr(temp, " STM"))
{
fprintf(stderr, "ocp.ini update (0.2.0) adds STM to [fileselector] modextensions=....\n");
strcat (new_temp, " STM");
}
cfSetProfileString("fileselector", "modextensions", new_temp);
free (new_temp);
}
if (epoch < 20190927)
{
fprintf(stderr, "ocp.ini update (0.2.0) adds [filetype 41]\n");
cfSetProfileInt("filetype 41", "color", 3, 10);
cfSetProfileString("filetype 41", "name", "HVL");
cfSetProfileString("filetype 41", "interface", "plOpenCP");
cfSetProfileString("filetype 41", "pllink", "playhvl");
cfSetProfileString("filetype 41", "player", "hvlPlayer");
}
if (epoch < 20190927)
{
const char *temp;
char *new_temp;
temp = cfGetProfileString("fileselector", "modextensions", "");
new_temp = malloc (strlen (temp) + 9);
strcpy (new_temp, temp);
if (!strstr(temp, " HVL"))
{
fprintf(stderr, "ocp.ini update (0.2.0) adds HVL to [fileselector] modextensions=....\n");
strcat (new_temp, " HVL");
}
if (!strstr(temp, " AHX"))
{
fprintf(stderr, "ocp.ini update (0.2.0) adds AHX to [fileselector] modextensions=....\n");
strcat (new_temp, " AHX");
}
cfSetProfileString("fileselector", "modextensions", new_temp);
free (new_temp);
}
if (epoch < 20191019)
{
const char *temp;
char *new_temp, *temp2;
temp = cfGetProfileString("fileselector", "modextensions", "");
new_temp = strdup (temp);
temp2 = strstr (new_temp, " OGA");
if (temp2)
{
temp2 = strstr(temp2, " OGA");
printf("ocp.ini update (0.2.0) removed double OGA entry in [fileselector] modextensions=....\n");
memmove (temp2, temp2 + 4, strlen (temp2) - 3);
}
temp2 = strstr (new_temp, " OGG");
if (temp2)
{
temp2 = strstr(temp2, " OGG");
printf("ocp.ini update (0.2.0) removed double OGG entry in [fileselector] modextensions=....\n");
memmove (temp2, temp2 + 4, strlen (temp2) - 3);
}
cfSetProfileString("fileselector", "modextensions", new_temp);
free (new_temp);
}
if (epoch < 20191101)
{
printf("ocp.ini update (0.2.0) renamed filetype FLA to FLAC\n");
cfSetProfileString("filetype 38", "name", "FLAC");
}
if (epoch < 20191111)
{
printf("ocp.ini update (0.2.0) changed default value of [screen] insttype=2\n");
cfSetProfileString("screen", "insttype", "2");
printf("ocp.ini update (0.2.0) changed default value of [screen] channeltype=2\n");
cfSetProfileString("screen", "channeltype", "2");
}
if (epoch < 20200225)
{
printf("ocp.ini update (0.2.90) added [libsidplayfp] section\n");
cfSetProfileString("libsidplayfp", "emulator", "residfp");
cfSetProfileString("libsidplayfp", "defaultC64", "PAL");
cfSetProfileBool("libsidplayfp", "forceC64", 0);
cfSetProfileString("libsidplayfp", "defaultSID", "MOS6581");
cfSetProfileBool("libsidplayfp", "forceSID", 0);
cfSetProfileString("libsidplayfp", "CIA", "MOS6526");
cfSetProfileBool("libsidplayfp", "filter", 1);
cfSetProfileString("libsidplayfp", "filterbias", "0.0");
cfSetProfileString("libsidplayfp", "filtercurve6581", "0.5");
cfSetProfileString("libsidplayfp", "filtercurve8580", "0.5");
cfSetProfileBool("libsidplayfp", "digiboost", 0);
cfSetProfileString("libsidplayfp", "kernal", "KERNAL.ROM");
cfSetProfileString("libsidplayfp", "basic", "BASIC.ROM");
cfSetProfileString("libsidplayfp", "chargen", "CHARGEN.ROM");
}
if (epoch < 20210118)
{
char *temp;
printf("ocp.ini update (0.2.90) moved PLS and M3U from files to virtual directories\n");
cfRemoveProfile("filetype 128");
cfRemoveProfile("filetype 129");
temp = (char *)cfGetProfileString("fileselector", "modextensions", "");
if (temp)
{
char *ptr;
temp = strdup (temp);
while ((ptr = strstr (temp, "PLS")))
{
memmove (ptr, ptr + 3, strlen (ptr) - 3 + 1);
}
while ((ptr = strstr (temp, "M3U")))
{
memmove (ptr, ptr + 3, strlen (ptr) - 3 + 1);
}
while ((ptr = strstr (temp, " ")))
{
memmove (ptr, ptr + 2, strlen (ptr) - 2 + 1);
}
cfSetProfileString("fileselector", "modextensions", temp);
free (temp); temp = 0;
}
}
if (epoch < 20210118)
{
printf("ocp.ini update (0.2.90) removed obsolete arcZIP and friends\n");
cfRemoveProfile("arcZIP");
cfRemoveProfile("arcARJ");
cfRemoveProfile("arcARJ");
cfRemoveProfile("arcRAR");
cfRemoveProfile("arcLHA");
cfRemoveProfile("arcACE");
}
if (epoch < 20210118)
{
printf("ocp.ini update (0.2.90) DEVv VirtualInterface replaced DEVs DEVp and DEVw\n");
cfRemoveProfile("filetype 24");
cfRemoveProfile("filetype 25");
cfRemoveProfile("filetype 26");
cfSetProfileInt ("filetype 254", "color", 6, 10);
cfSetProfileString ("filetype 254", "name", "DEVv");
cfSetProfileString ("filetype 254", "interface", "VirtualInterface");
}
if (epoch < 20210926)
{
printf("ocp.ini update (0.2.91) Removed options for analog cdrom audio\n");
cfRemoveEntry ("sound", "cdsamplelinein");
cfRemoveEntry ("sound", "digitalcd");
}
if (epoch < 20211020)
{
int color;
printf("ocp.ini update (0.2.91) Removed filetype 0 (MOD)\n");
color = cfGetProfileInt ("filetype 0", "color", 1, 10); // default color was 1
cfSetProfileInt ("fscolors", "MOD", color, 10);
cfRemoveProfile("filetype 0");
printf("ocp.ini update (0.2.91) Removed filetype 1 (MODd)\n");
color = cfGetProfileInt ("filetype 1", "color", 4, 10); // default color was 4
cfSetProfileInt ("fscolors", "MODd", color, 10);
cfRemoveProfile("filetype 1");
printf("ocp.ini update (0.2.91) Removed filetype 2 (MODt)\n");
color = cfGetProfileInt ("filetype 2", "color", 4, 10); // default color was 4
cfSetProfileInt ("fscolors", "MODt", color, 10);
cfRemoveProfile("filetype 2");
printf("ocp.ini update (0.2.91) Removed filetype 3 (M31)\n");
color = cfGetProfileInt ("filetype 3", "color", 4, 10); // default color was 4
cfSetProfileInt ("fscolors", "M31", color, 10);
cfRemoveProfile("filetype 3");
printf("ocp.ini update (0.2.91) Removed filetype 6 (M15)\n");
color = cfGetProfileInt ("filetype 6", "color", 4, 10); // default color was 4
cfSetProfileInt ("fscolors", "M15", color, 10);
cfRemoveProfile("filetype 6");
printf("ocp.ini update (0.2.91) Removed filetype 7 (M15t)\n");
color = cfGetProfileInt ("filetype 7", "color", 4, 10); // default color was 4
cfSetProfileInt ("fscolors", "M15t", color, 10);
cfRemoveProfile("filetype 7");
printf("ocp.ini update (0.2.91) Removed filetype 8 (WOW)\n");
color = cfGetProfileInt ("filetype 8", "color", 4, 10); // default color was 4
cfSetProfileInt ("fscolors", "WOW", color, 10);
cfRemoveProfile("filetype 8");
printf("ocp.ini update (0.2.91) Removed filetype 9 (S3M)\n");
color = cfGetProfileInt ("filetype 9", "color", 2, 10); // default color was 2
cfSetProfileInt ("fscolors", "S3M", color, 10);
cfRemoveProfile("filetype 9");
printf("ocp.ini update (0.2.91) Removed filetype 10 (XM)\n");
color = cfGetProfileInt ("filetype 10", "color", 3, 10); // default color was 3
cfSetProfileInt ("fscolors", "XM", color, 10);
cfRemoveProfile("filetype 10");
printf("ocp.ini update (0.2.91) Removed filetype 11 (MTM)\n");
color = cfGetProfileInt ("filetype 11", "color", 1, 10); // default color was 1
cfSetProfileInt ("fscolors", "MTM", color, 10);
cfRemoveProfile("filetype 11");
printf("ocp.ini update (0.2.91) Removed filetype 12 (669)\n");
color = cfGetProfileInt ("filetype 12", "color", 2, 10); // default color was 2
cfSetProfileInt ("fscolors", "669", color, 10);
cfRemoveProfile("filetype 12");
printf("ocp.ini update (0.2.91) Removed filetype 13 (ULT)\n");
color = cfGetProfileInt ("filetype 13", "color", 5, 10); // default color was 5
cfSetProfileInt ("fscolors", "ULT", color, 10);
cfRemoveProfile("filetype 13");
printf("ocp.ini update (0.2.91) Removed filetype 14 (DMF)\n");
color = cfGetProfileInt ("filetype 14", "color", 6, 10); // default color was 6
cfSetProfileInt ("fscolors", "DMF", color, 10);
cfRemoveProfile("filetype 14");
printf("ocp.ini update (0.2.91) Removed filetype 15 (OKT)\n");
color = cfGetProfileInt ("filetype 15", "color", 5, 10); // default color was 5
cfSetProfileInt ("fscolors", "OKT", color, 10);
cfRemoveProfile("filetype 15");
printf("ocp.ini update (0.2.91) Removed filetype 16 (MID)\n");
color = cfGetProfileInt ("filetype 16", "color", 3, 10); // default color was 3
cfSetProfileInt ("fscolors", "MIDI", color, 10);
cfRemoveProfile("filetype 16");
printf("ocp.ini update (0.2.91) Removed filetype 17 (CDA)\n");
color = cfGetProfileInt ("filetype 17", "color", 3, 10); // default color was 3
cfSetProfileInt ("fscolors", "CDA", color, 10);
cfRemoveProfile("filetype 17");
printf("ocp.ini update (0.2.91) Removed filetype 18 (MIDd)\n");
cfRemoveProfile("filetype 18"); // After moving to TiMidity++, the MIDd override was no longer used
printf("ocp.ini update (0.2.91) Removed filetype 19 (PTM)\n");
color = cfGetProfileInt ("filetype 19", "color", 2, 10); // default color was 2
cfSetProfileInt ("fscolors", "PTM", color, 10);
cfRemoveProfile("filetype 19");
printf("ocp.ini update (0.2.91) Removed filetype 21 (MDL)\n");
color = cfGetProfileInt ("filetype 21", "color", 6, 10); // default color was 6
cfSetProfileInt ("fscolors", "MDL", color, 10);
cfRemoveProfile("filetype 21");
printf("ocp.ini update (0.2.91) Removed filetype 22 (AMS)\n");
color = cfGetProfileInt ("filetype 22", "color", 3, 10); // default color was 3
cfSetProfileInt ("fscolors", "AMS", color, 10);
cfRemoveProfile("filetype 22");
printf("ocp.ini update (0.2.91) Removed filetype 23 (INP)\n");
cfRemoveProfile("filetype 23"); // visual feedback of analog inputs was never ported from the DOS version
printf("ocp.ini update (0.2.91) Removed filetype 27 (IT)\n");
color = cfGetProfileInt ("filetype 27", "color", 5, 10); // default color was 5
cfSetProfileInt ("fscolors", "IT", color, 10);
cfRemoveProfile("filetype 27");
printf("ocp.ini update (0.2.91) Removed filetype 28 (WAV)\n");
color = cfGetProfileInt ("filetype 28", "color", 14, 10); // default color was 14
cfSetProfileInt ("fscolors", "WAV", color, 10);
cfRemoveProfile("filetype 28");
printf("ocp.ini update (0.2.91) Removed filetype 30 (MPx)\n");
color = cfGetProfileInt ("filetype 30", "color", 6, 10); // default color was 6
cfSetProfileInt ("fscolors", "MPx", color, 10);
cfRemoveProfile("filetype 30");
printf("ocp.ini update (0.2.91) Removed filetype 31 (SID)\n");
color = cfGetProfileInt ("filetype 31", "color", 6, 10); // default color was 6
cfSetProfileInt ("fscolors", "SID", color, 10);
cfRemoveProfile("filetype 31");
printf("ocp.ini update (0.2.91) Removed filetype 32 (MXM)\n");
color = cfGetProfileInt ("filetype 32", "color", 3, 10); // default color was 3
cfSetProfileInt ("fscolors", "MXM", color, 10);
cfRemoveProfile("filetype 32");
printf("ocp.ini update (0.2.91) Removed filetype 33 (MODf)\n");
color = cfGetProfileInt ("filetype 33", "color", 3, 10); // default color was 4
cfSetProfileInt ("fscolors", "MODf", color, 10);
cfRemoveProfile("filetype 33");
printf("ocp.ini update (0.2.91) Removed filetype 35 (OGG)\n");
color = cfGetProfileInt ("filetype 35", "color", 6, 10); // default color was 6
cfSetProfileInt ("fscolors", "OGG", color, 10);
cfRemoveProfile("filetype 35");
printf("ocp.ini update (0.2.91) Removed filetype 36 (OPL)\n");
color = cfGetProfileInt ("filetype 36", "color", 6, 10); // default color was 6
cfSetProfileInt ("fscolors", "OPL", color, 10);
cfRemoveProfile("filetype 36");
printf("ocp.ini update (0.2.91) Removed filetype 37 (AY)\n");
color = cfGetProfileInt ("filetype 37", "color", 6, 10); // default color was 6
cfSetProfileInt ("fscolors", "AY", color, 10);
cfRemoveProfile("filetype 37");
printf("ocp.ini update (0.2.91) Removed filetype 38 (FLAC)\n");
color = cfGetProfileInt ("filetype 38", "color", 6, 10); // default color was 6
cfSetProfileInt ("fscolors", "FLAC", color, 10);
cfRemoveProfile("filetype 38");
printf("ocp.ini update (0.2.91) Removed filetype 39 (YM)\n");
color = cfGetProfileInt ("filetype 39", "color", 6, 10); // default color was 6
cfSetProfileInt ("fscolors", "YM", color, 10);
cfRemoveProfile("filetype 39");
printf("ocp.ini update (0.2.91) Removed filetype 40 (STM)\n");
color = cfGetProfileInt ("filetype 40", "color", 2, 10); // default color was 2
cfSetProfileInt ("fscolors", "STM", color, 10);
cfRemoveProfile("filetype 40");
printf("ocp.ini update (0.2.91) Removed filetype 41 (HVL)\n");
color = cfGetProfileInt ("filetype 41", "color", 3, 10); // default color was 3
cfSetProfileInt ("fscolors", "HVL", color, 10);
cfRemoveProfile("filetype 41");
printf("ocp.ini update (0.2.91) Removed filetype 254 (DEVv)\n");
color = cfGetProfileInt ("filetype 254", "color", 6, 10); // default color was 6
cfSetProfileInt ("fscolors", "DEVv", color, 10);
cfRemoveProfile("filetype 254");
printf("ocp.ini update (0.2.91) Removed modextensions\n"); /* each plugin registers this */
cfRemoveEntry("screen", "modextensions");
}
if (epoch < 20211102)
{
int size;
printf("ocp.ini update (0.2.91) Removed 4x4 font\n");
size = cfGetProfileInt ("x11", "font", 1, 10);
size = (size == 2) ? 1 : 0;
cfSetProfileInt ("x11", "font", size, 10);
}
if (epoch < 20211107)
{
printf("ocp.ini update (0.2.91) Removed remaining traces of MDZ - features was never ported from DOS version\n");
cfRemoveEntry("fileselector", "scanmdz");
}
if (epoch < 20220121)
{
printf("ocp.ini update (0.2.93) timidity now have default options stored in ocp.ini\n");
cfSetProfileString ("timidity", "configfile", "");
cfSetProfileInt ("timidity", "reverbmode", 3, 10);
cfSetProfileInt ("timidity", "reverblevel", 40, 10);
cfSetProfileInt ("timidity", "scaleroom", 28, 10);
cfSetProfileInt ("timidity", "offsetroom", 70, 10);
cfSetProfileInt ("timidity", "predelayfactor", 100, 10);
cfSetProfileInt ("timidity", "delaymode", -1, 10);
cfSetProfileInt ("timidity", "delay", 25, 10);
cfSetProfileInt ("timidity", "chorusenabled", 1, 10);
}
if (epoch < 20220223)
{
printf("ocp.ini update (0.2.94) new option in the filebrowser, showallfiles in ocp.ini\n");
cfSetProfileBool ("fileselector", "showallfiles", 0);
}
if (epoch < 20220303)
{
char *kernal, *basic, *chargen, *iter;
printf("ocp.ini update (0.2.95) libsidplayfp ROM paths changed into UNIX syntax\n");
kernal = strdup (cfGetProfileString ("libsidplayfp", "kernal", "KERNAL.ROM"));
basic = strdup (cfGetProfileString ("libsidplayfp", "basic", "BASIC.ROM"));
chargen = strdup (cfGetProfileString ("libsidplayfp", "chargen", "CHARGEN.ROM"));
for (iter = kernal; *iter; iter++)
{
if (*iter == '/')
{
*iter = '\\';
} else if (*iter == '\\')
{
*iter = '/';
}
}
for (iter = basic; *iter; iter++)
{
if (*iter == '/')
{
*iter = '\\';
} else if (*iter == '\\')
{
*iter = '/';
}
}
for (iter = chargen; *iter; iter++)
{
if (*iter == '/')
{
*iter = '\\';
} else if (*iter == '\\')
{
*iter = '/';
}
}
cfSetProfileString ("libsidplayfp", "kernal", kernal);
cfSetProfileString ("libsidplayfp", "basic", basic);
cfSetProfileString ("libsidplayfp", "chargen", chargen);
free (kernal);
free (basic);
free (chargen);
}
if (epoch < 20220304)
{
printf("ocp.ini update (0.2.95) removed the last left-overs of dev-sampler\n");
cfRemoveEntry("sound", "samplerdevices");
cfRemoveEntry("sound", "defsampler");
cfRemoveProfile("devsOSS");
cfRemoveProfile("devsNone");
}
if (epoch < 20220326)
{
printf("ocp.ini update (0.2.96) removed the not-used smpbufsize\n");
cfRemoveEntry("sound", "smpbufsize");
}
if (epoch < 20220326)
{
printf("ocp.ini update (0.2.96) appended stereo=on and 16bit=on to [devpDisk]\n");
cfSetProfileBool("devpDisk", "stereo", 1);
cfSetProfileBool("devpDisk", "16bit", 1);
}
if (epoch < 20220327)
{
printf("ocp.ini update (0.2.96) removed mix16bit, mixstereo, samp16bit and sampstereo\n");
cfRemoveEntry("sound", "mix16bit");
cfRemoveEntry("sound", "mixstereo");
cfRemoveEntry("sound", "samp16bit");
cfRemoveEntry("sound", "sampstereo");
}
if (epoch < 20220417)
{
printf("ocp.ini update (0.2.96) removed mixbufsize\n");
cfRemoveEntry("sound", "mixbufsize");
}
if (epoch < 20220919)
{
fprintf(stderr, "ocp.ini update (0.2.100) removes [defaultconfig] link=medialib\n");
cfRemoveEntry("defaultconfig", "link");
}
if (epoch < 20221228)
{
char *tmp, *iter;
fprintf(stderr, "ocp.ini update (0.2.102) removes postprocadds\n");
cfRemoveEntry("devwMix", "postprocadds");
cfRemoveEntry("devwMixQ", "postprocadds");
cfRemoveEntry("devwMixF", "postprocadds");
fprintf(stderr, "ocp.ini update (0.2.102) _iReverb and _fReverb should be named iReverb and fReverb\n");
if (!strcmp (cfGetProfileString ("devwMix", "postprocs", ""), "_iReverb")) cfSetProfileString ("devwMix", "postprocs", "iReverb");
if (!strcmp (cfGetProfileString ("devwMixQ", "postprocs", ""), "_iReverb")) cfSetProfileString ("devwMixQ", "postprocs", "iReverb");
if (!strcmp (cfGetProfileString ("devwMixF", "postprocs", ""), "_fReverb")) cfSetProfileString ("devwMixF", "postprocs", "fReverb");
/* We silently repair the case-error in devwmixQ, this has no effect other than looking more consistent */
tmp = strdup (cfGetProfileString ("sound", "wavetabledevices", ""));
iter = strstr (tmp, "devwmixQ");
if (iter)
{
iter[4] = 'M';
cfSetProfileString ("sound", "wavetabledevices", tmp);
}
free (tmp);
}
if (epoch < 20230211)
{
fprintf(stderr, "ocp.ini update (0.2.103) removes [devpALSA] link=\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devpCA]\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devpDisk] link=\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devpMPx]\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devpNone]\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devpOSS] link=\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devpSDL]\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devpSDL2]\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devwNone]\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devwMix] link=\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devwMix] subtype=\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devwMixQ] link=\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devwMixQ] subtype=\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devwMixF] link=\n");
fprintf(stderr, "ocp.ini update (0.2.103) removes [devwMixF] mixResample=\n");
fprintf(stderr, "ocp.ini update (0.2.103) defaults [devpALSA] card=default (former name was path=)\n");
fprintf(stderr, "ocp.ini update (0.2.103) defaults [devpALSA] mixer=default\n");
cfRemoveEntry ("devpALSA", "link");
cfRemoveProfile("devpCA" );
cfRemoveEntry ("devpDisk", "link");
cfRemoveProfile("devpMPx" );
cfRemoveProfile("devpNone");
cfRemoveEntry ("devpOSS" , "link");
cfRemoveProfile("devpSDL" );
cfRemoveProfile("devpSDL2");
cfRemoveProfile("devwNone");
cfRemoveEntry ("devwMix" , "link");
cfRemoveEntry ("devwMix" , "subtype");
cfRemoveEntry ("devwMixQ", "link");
cfRemoveEntry ("devwMixQ", "subtype");
cfRemoveEntry ("devwMixF", "link");
cfRemoveEntry ("devwMixF", "mixResample");
cfSetProfileString ("devpALSA", "card", cfGetProfileString ("devpALSA", "path", "default"));
cfRemoveEntry ("devpALSA", "path");
cfSetProfileString ("devpALSA", "mixer", cfGetProfileString ("devpALSA", "mixer", "default"));
}
if (epoch < 20230213)
{
fprintf(stderr, "ocp.ini update (0.2.103) adds comment on [screen] mvoltype=\n");
fprintf(stderr, "ocp.ini update (0.2.103) adds comment on [screen] insttype=\n");
fprintf(stderr, "ocp.ini update (0.2.103) adds comment on [screen] channeltype=\n");
fprintf(stderr, "ocp.ini update (0.2.103) adjust the default [screen] screentype=\n");
fprintf(stderr, "ocp.ini update (0.2.103) replaces comment on [screen] screentype=\n");
fprintf(stderr, "ocp.ini update (0.2.103) move [x11] font= to [screen] fontsize=\n");
fprintf(stderr, "ocp.ini update (0.2.103) add [screen] winwidth=\n");
fprintf(stderr, "ocp.ini update (0.2.103) add [screen] winheight=\n");
cfSetProfileComment ("screen", "mvoltype", cfGetProfileComment ("screen", "mvoltype", "; 0=none, 1=big, 2=side (only in >132 column modes)"));
cfSetProfileComment ("screen", "insttype", cfGetProfileComment ("screen", "insttype", "; 0=none, 1=short, 2=long, 3=side (only in >132 column modes)"));
cfSetProfileComment ("screen", "channeltype", cfGetProfileComment ("screen", "channeltype", "; 0=none, 1=short, 2=long, 3=side (only in >132 column modes)"));
cfSetProfileInt ("screen", "screentype", 5, 10);
cfSetProfileComment ("screen", "screentype", "; 0=80x25, 1=80x30, 2=80x50, 3=80x60, 4=132x25, 5=132x30, 6=132x50, 7=132x60, 8=custom");
cfSetProfileString ("screen", "fontsize", cfGetProfileString ("x11", "font", "1"));
cfSetProfileComment ("screen", "fontsize", "; if screentype=8: 0=8x8, 1=8x16");
cfRemoveEntry ("x11", "font");
cfSetProfileInt ("screen", "winwidth", 1280, 10);
cfSetProfileComment ("screen", "winwidth", "; if screentype=8");
cfSetProfileInt ("screen", "winheight", 1024, 10);
cfSetProfileComment ("screen", "winheight", "; if screentype=8");
}
if (epoch < 20230214)
{
fprintf(stderr, "ocp.ini update (0.2.103), 0.2.91 update missed setting the color for XM files.\n");
cfSetProfileInt ("fscolors", "XM", cfGetProfileInt ("fscolors", "XM", 3, 10), 10);
}
if (epoch < 20230403)
{
fprintf(stderr, "ocp.ini update (0.2.104), added [adplug] emulator=nuked\n");
cfSetProfileString ("adplug", "emulator", "nuked");
cfSetProfileComment ("adplug", "emulator", "; Possible values are ken, nuked, satoh and woody.");
}
if (epoch < 20230607)
{
fprintf(stderr, "ocp.ini update (0.2.106), added playgme plugin\n");
cfSetProfileInt ("fscolors", "AY2", 13, 10);
cfSetProfileInt ("fscolors", "GBS", 13, 10);
cfSetProfileInt ("fscolors", "GYM", 13, 10);
cfSetProfileInt ("fscolors", "HES", 13, 10);
cfSetProfileInt ("fscolors", "KSS", 13, 10);
cfSetProfileInt ("fscolors", "NSF", 13, 10);
cfSetProfileInt ("fscolors", "NSFe", 13, 10);
cfSetProfileInt ("fscolors", "SAP", 13, 10);
cfSetProfileInt ("fscolors", "SPC", 13, 10);
cfSetProfileInt ("fscolors", "VGM", 13, 10);
}
if (epoch < 20230630)
{
fprintf(stderr, "ocp.ini update (0.2.106), added [adplug] retrowave support\n");
cfSetProfileComment ("adplug", "emulator", "; Possible values are ken, nuked, satoh, woody and retrowave.");
cfSetProfileString ("adplug", "retrowave", "auto");
cfSetProfileComment ("adplug", "retrowave", "; Device to use, e.g. /dev/ttyACM0 /dev/cuaU0 /dev/dtyU0 /dev/cu.usbmodem0000001 COM1");
}
if (epoch < 20240107)
{
fprintf(stderr, "ocp.ini update (0.2.107) add [fscolors] UNKN=7\n");
cfSetProfileInt ("fscolors", "UNKN", 7, 10);
}
if (epoch < 20240510)
{
fprintf (stderr, "ocp.ini update (0.2.110) add [modland.com] mirror=https://ftp.modland.com\n");
#ifdef _WIN32
fprintf (stderr, "ocp.ini update (0.2.110) add [modland.com] cachedir=$OCPDATAHOME\\modland.com\\\n");
#else
fprintf (stderr, "ocp.ini update (0.2.110) add [modland.com] cachedir=$OCPDATAHOME/modland.com/\n");
#endif
fprintf (stderr, "ocp.ini update (0.2.110) add [modland.com] showrelevantdirectoriesonly=1\n");
cfSetProfileString ("modland.com", "mirror", "https://ftp.modland.com");
#ifdef _WIN32
cfSetProfileString ("modland.com", "cachedir", "$OCPDATAHOME\\modland.com\\");
#else
cfSetProfileString ("modland.com", "cachedir", "$OCPDATAHOME/modland.com/");
#endif
cfSetProfileBool ("modland.com", "showrelevantdirectoriesonly", 1);
}
if (epoch < 20240510)
{
fprintf(stderr, "ocp.ini update (0.2.107) add [libsidplayfp] filterrange6581=0.5\n");
cfSetProfileString ("libsidplayfp", "filterrange6581", "0.5");
fprintf(stderr, "ocp.ini update (0.2.107) add [libsidplayfp] combinedwaveforms=Strong\n");
cfSetProfileString ("libsidplayfp", "combinedwaveforms", "Strong");
}
if (epoch < 20240510)
{
cfSetProfileInt("version", "epoch", 20240510, 10);
cfStoreConfig();
if (isatty(2))
{
fprintf(stderr,"\n\033[1m\033[31mWARNING, ocp.ini has changed, have tried my best to update it. If OCP failes to start, please try to remove by doing either:\033[0m\nrm -f ~/.ocp/ocp.ini\033[1m\033[31m or \033[0m\nrm -f $XDG_CONFIG_HOME/ocp/ocp.ini\n\n");
} else {
fprintf(stderr,"\nWARNING, ocp.ini has changed, have tried my best to update it. If OCP failes to start, please try to remove by doing either:\nrm -f ~/.ocp/ocp.ini or rm -f $XDG_CONFIG_HOME/ocp/ocp.ini\n\n");
}
sleep(5);
}
}
if (cfGetProfileInt("version", "epoch", 0, 10) != 20240510)
{
if (isatty(2))
{
fprintf(stderr,"\n\033[1m\033[31mWARNING, ocp.ini [version] epoch != 20240510\033[0m\n\n");
sleep(5);
} else {
fprintf(stderr,"\nWARNING, ocp.ini [version] epoch != 20240510\n\n");
}
}
cfScreenSec=cfGetProfileString(cfConfigSec, "screensec", "screen");
cfSoundSec=cfGetProfileString(cfConfigSec, "soundsec", "sound");
lnkLink(cfGetProfileString2(cfConfigSec, "defaultconfig", "prelink", ""));
lnkLink(cfGetProfileString("general", "prelink", ""));
if (lnkLinkDir(cfProgramPathAutoload)<0)
{
fprintf(stderr, "could not autoload directory: %s\n", cfProgramPathAutoload);
return -1;
}
if (lnkLink(cfGetProfileString("general", "link", ""))<0)
{
fprintf(stderr, "could not link default objects!\n");
return -1;
}
if ((lnkLink(cfGetProfileString2(cfConfigSec, "defaultconfig", "link", ""))<0))
{
fprintf(stderr, "could not link default objects!\n");
return -1;
}
fprintf(stderr, "running initializers...\n");
if (lnkInitAll())
{
return errGen;
}
if (!ocpmain)
{
fprintf(stderr, "ERROR - No main specified in libraries\n");
return errGen;
}
if (ocpmain->main(argc, argv)<0)
return errGen;
return 0;
}
void done_modules(void)
{
lnkCloseAll();
lnkFree(0);
}
#ifdef GCC_411_RUNTIMECHECK
int failcheck(signed int source, signed int filter)
{
if ((source>128)&&(filter>0))
return 1;
return 0;
}
#endif
static int _bootup(int argc, char *argv[], const char *HomePath, const char *ConfigHomePath, const char *ConfigDataPath, const char *DataPath, const char *ProgramPath)
{
int result;
#ifndef _WIN32
if (isatty(2))
{
fprintf(stderr, "\033[33m\033[1mOpen Cubic Player for Unix \033[32mv" VERSION "\033[33m, compiled on %s, %s\n", compiledate, compiletime);
fprintf(stderr, "\033[31m\033[22mPorted to \033[1m\033[32mUnix \033[31m\033[22mby \033[1mStian Skjelstad\033[0m\n");
} else {
fprintf(stderr, "Open Cubic Player for Unix v" VERSION ", compiled on %s, %s\n", compiledate, compiletime);
fprintf(stderr, "Ported to Unix by Stian Skjelstad\n");
}
#ifdef GCC_411_RUNTIMECHECK
fprintf(stderr, "Checking for gcc known 4.1.1 fault - ");
{
int j;
for (j=0;j<256;j++)
{
signed char j2=(signed char)j;
signed int j3=j2;
if (failcheck(j, j3))
{
fprintf(stderr, "failed\nTry to remove any -O flag or to add -fwrapv to CFLAGS and CXXFLAGS and recompile\n");
return 0;
}
}
}
fprintf(stderr, "pass\n");
#endif
#else
fprintf(stderr, "Open Cubic Player for mingw v" VERSION ", compiled on %s, %s\n", compiledate, compiletime);
fprintf(stderr, "Ported to Unix and mingw by Stian Skjelstad\n");
#endif
cfHomePath = (char *)HomePath;
cfConfigHomePath = (char *)ConfigHomePath;
cfDataHomePath = (char*)ConfigDataPath;
cfDataPath = strdup (DataPath);
cfProgramPath = (char *)ProgramPath;
cfProgramPathAutoload = malloc (strlen (cfProgramPath) + 9 + 1);
#ifdef _WIN32
sprintf(cfProgramPathAutoload, "%sautoload\\", cfProgramPath);
#else
sprintf(cfProgramPathAutoload, "%sautoload/", cfProgramPath);
#endif
if (cfGetConfig(argc, argv))
{
cfConfigHomePath = 0;
cfDataHomePath = 0;
free (cfDataPath); cfDataPath = 0;
free (cfTempPath); cfTempPath = 0;
cfProgramPath = 0;
free (cfProgramPathAutoload); cfProgramPathAutoload = 0;
return -1;
}
result=init_modules(argc, argv);
if (result)
if (result!=errHelpPrinted)
fprintf(stderr, "%s\n", errGetLongString(result));
done_modules();
cfCloseConfig();
cfConfigHomePath = 0;
cfDataHomePath = 0;
free (cfDataPath); cfDataPath = 0;
free (cfTempPath); cfTempPath = 0;
cfProgramPath = 0;
free (cfProgramPathAutoload); cfProgramPathAutoload = 0;
return 0;
}
struct bootupstruct bootup = { _bootup };
|