├── build.xml ├── build ├── built-jar.properties └── classes │ ├── View$1.class │ ├── View.class │ ├── mountains.jpg │ └── mountains3.jpg ├── dist ├── JavaComancheLikeSimpleVoxelSpaceEngineTest.jar └── README.TXT ├── manifest.mf ├── nbproject ├── build-impl.xml ├── genfiles.properties ├── private │ ├── config.properties │ └── private.properties ├── project.properties └── project.xml └── src ├── View.java ├── mountains.jpg └── mountains3.jpg /build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Builds, tests, and runs the project JavaComancheLikeSimpleVoxelSpaceEngineTest. 12 | 13 | 73 | 74 | -------------------------------------------------------------------------------- /build/built-jar.properties: -------------------------------------------------------------------------------- 1 | #Fri, 12 May 2017 22:22:40 -0300 2 | 3 | 4 | /media/My\ Passport/Leo/algoritmos/2.5D/voxelSpace_comanche/JavaComancheLikeSimpleVoxelSpaceEngineTest= 5 | -------------------------------------------------------------------------------- /build/classes/View$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardo-ono/JavaComancheLikeSimpleVoxelSpaceEngineTest/0d34d0d0e3a5a06c3ed6dd619eaa0eb0bd2f1231/build/classes/View$1.class -------------------------------------------------------------------------------- /build/classes/View.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardo-ono/JavaComancheLikeSimpleVoxelSpaceEngineTest/0d34d0d0e3a5a06c3ed6dd619eaa0eb0bd2f1231/build/classes/View.class -------------------------------------------------------------------------------- /build/classes/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardo-ono/JavaComancheLikeSimpleVoxelSpaceEngineTest/0d34d0d0e3a5a06c3ed6dd619eaa0eb0bd2f1231/build/classes/mountains.jpg -------------------------------------------------------------------------------- /build/classes/mountains3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardo-ono/JavaComancheLikeSimpleVoxelSpaceEngineTest/0d34d0d0e3a5a06c3ed6dd619eaa0eb0bd2f1231/build/classes/mountains3.jpg -------------------------------------------------------------------------------- /dist/JavaComancheLikeSimpleVoxelSpaceEngineTest.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardo-ono/JavaComancheLikeSimpleVoxelSpaceEngineTest/0d34d0d0e3a5a06c3ed6dd619eaa0eb0bd2f1231/dist/JavaComancheLikeSimpleVoxelSpaceEngineTest.jar -------------------------------------------------------------------------------- /dist/README.TXT: -------------------------------------------------------------------------------- 1 | ======================== 2 | BUILD OUTPUT DESCRIPTION 3 | ======================== 4 | 5 | When you build an Java application project that has a main class, the IDE 6 | automatically copies all of the JAR 7 | files on the projects classpath to your projects dist/lib folder. The IDE 8 | also adds each of the JAR files to the Class-Path element in the application 9 | JAR files manifest file (MANIFEST.MF). 10 | 11 | To run the project from the command line, go to the dist folder and 12 | type the following: 13 | 14 | java -jar "JavaComancheLikeSimpleVoxelSpaceEngineTest.jar" 15 | 16 | To distribute this project, zip up the dist folder (including the lib folder) 17 | and distribute the ZIP file. 18 | 19 | Notes: 20 | 21 | * If two JAR files on the project classpath have the same name, only the first 22 | JAR file is copied to the lib folder. 23 | * Only JAR files are copied to the lib folder. 24 | If the classpath contains other types of files or folders, these files (folders) 25 | are not copied. 26 | * If a library on the projects classpath also has a Class-Path element 27 | specified in the manifest,the content of the Class-Path element has to be on 28 | the projects runtime path. 29 | * To set a main class in a standard Java project, right-click the project node 30 | in the Projects window and choose Properties. Then click Run and enter the 31 | class name in the Main Class field. Alternatively, you can manually type the 32 | class name in the manifest Main-Class element. 33 | -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 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 | Must set platform.home 83 | Must set platform.bootcp 84 | Must set platform.java 85 | Must set platform.javac 86 | 87 | The J2SE Platform is not correctly set up. 88 | Your active platform is: ${platform.active}, but the corresponding property "platforms.${platform.active}.home" is not found in the project's properties files. 89 | Either open the project in the IDE and setup the Platform with the same name or add it manually. 90 | For example like this: 91 | ant -Duser.properties.file=<path_to_property_file> jar (where you put the property "platforms.${platform.active}.home" in a .properties file) 92 | or ant -Dplatforms.${platform.active}.home=<path_to_JDK_home> jar (where no properties file is used) 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 | Must set src.dir 256 | Must set test.src.dir 257 | Must set build.dir 258 | Must set dist.dir 259 | Must set build.classes.dir 260 | Must set dist.javadoc.dir 261 | Must set build.test.classes.dir 262 | Must set build.test.results.dir 263 | Must set build.classes.excludes 264 | Must set dist.jar 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 | Must set javac.includes 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 | No tests executed. 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 | 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 | Must set JVM to use for profiling in profiler.info.jvm 745 | Must set profiler agent JVM arguments in profiler.info.jvmargs.agent 746 | 747 | 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 | 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 | Must select some files in the IDE or set javac.includes 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 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 | To run this application from the command line without Ant, try: 1029 | 1030 | ${platform.java} -jar "${dist.jar.resolved}" 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 | 1066 | 1067 | 1068 | 1069 | 1070 | 1071 | 1072 | 1073 | 1074 | 1075 | 1076 | 1077 | Must select one file in the IDE or set run.class 1078 | 1079 | 1080 | 1081 | Must select one file in the IDE or set run.class 1082 | 1083 | 1084 | 1089 | 1090 | 1091 | 1092 | 1093 | 1094 | 1095 | 1096 | 1097 | 1098 | 1099 | 1100 | 1101 | 1102 | 1103 | 1104 | 1105 | 1106 | 1107 | 1108 | Must select one file in the IDE or set debug.class 1109 | 1110 | 1111 | 1112 | 1113 | Must select one file in the IDE or set debug.class 1114 | 1115 | 1116 | 1117 | 1118 | Must set fix.includes 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1130 | 1133 | 1134 | This target only works when run from inside the NetBeans IDE. 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | Must select one file in the IDE or set profile.class 1144 | This target only works when run from inside the NetBeans IDE. 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | This target only works when run from inside the NetBeans IDE. 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | This target only works when run from inside the NetBeans IDE. 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | Must select one file in the IDE or set run.class 1205 | 1206 | 1207 | 1208 | 1209 | 1210 | Must select some files in the IDE or set test.includes 1211 | 1212 | 1213 | 1214 | 1215 | Must select one file in the IDE or set run.class 1216 | 1217 | 1218 | 1219 | 1220 | Must select one file in the IDE or set applet.url 1221 | 1222 | 1223 | 1224 | 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | 1235 | 1236 | 1237 | 1238 | 1239 | 1240 | 1241 | 1242 | 1243 | 1244 | 1245 | 1246 | 1247 | 1248 | 1249 | 1250 | 1251 | 1252 | 1253 | 1254 | 1255 | 1256 | 1257 | 1258 | 1259 | 1260 | 1261 | 1262 | 1263 | 1264 | 1265 | 1266 | 1267 | 1268 | 1269 | 1270 | 1271 | 1276 | 1277 | 1278 | 1279 | 1280 | 1281 | 1282 | 1283 | 1284 | 1285 | 1286 | 1287 | 1288 | 1289 | 1290 | 1291 | 1292 | 1293 | 1294 | 1295 | 1296 | 1297 | 1298 | 1299 | 1300 | 1301 | 1302 | Must select some files in the IDE or set javac.includes 1303 | 1304 | 1305 | 1306 | 1307 | 1308 | 1309 | 1310 | 1311 | 1312 | 1313 | 1314 | 1319 | 1320 | 1321 | 1322 | 1323 | 1324 | 1325 | 1326 | Some tests failed; see details above. 1327 | 1328 | 1329 | 1330 | 1331 | 1332 | 1333 | 1334 | 1335 | Must select some files in the IDE or set test.includes 1336 | 1337 | 1338 | 1339 | Some tests failed; see details above. 1340 | 1341 | 1342 | 1343 | Must select some files in the IDE or set test.class 1344 | Must select some method in the IDE or set test.method 1345 | 1346 | 1347 | 1348 | Some tests failed; see details above. 1349 | 1350 | 1351 | 1356 | 1357 | Must select one file in the IDE or set test.class 1358 | 1359 | 1360 | 1361 | Must select one file in the IDE or set test.class 1362 | Must select some method in the IDE or set test.method 1363 | 1364 | 1365 | 1366 | 1367 | 1368 | 1369 | 1370 | 1371 | 1372 | 1373 | 1374 | 1379 | 1380 | Must select one file in the IDE or set applet.url 1381 | 1382 | 1383 | 1384 | 1385 | 1386 | 1387 | 1392 | 1393 | Must select one file in the IDE or set applet.url 1394 | 1395 | 1396 | 1397 | 1398 | 1399 | 1400 | 1401 | 1406 | 1407 | 1408 | 1409 | 1410 | 1411 | 1412 | 1413 | 1414 | 1415 | 1416 | 1417 | 1418 | 1419 | 1420 | 1421 | 1422 | 1423 | 1424 | 1425 | 1426 | 1427 | 1428 | 1429 | 1430 | 1431 | 1432 | 1433 | 1434 | 1435 | 1436 | 1437 | 1438 | 1439 | 1440 | 1441 | 1442 | 1443 | 1444 | 1445 | 1446 | 1447 | 1448 | 1449 | 1450 | 1451 | -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=3a97b596 2 | build.xml.script.CRC32=bad5238f 3 | build.xml.stylesheet.CRC32=8064a381@1.80.1.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=3a97b596 7 | nbproject/build-impl.xml.script.CRC32=21bf43e1 8 | nbproject/build-impl.xml.stylesheet.CRC32=830a3534@1.80.1.48 9 | -------------------------------------------------------------------------------- /nbproject/private/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardo-ono/JavaComancheLikeSimpleVoxelSpaceEngineTest/0d34d0d0e3a5a06c3ed6dd619eaa0eb0bd2f1231/nbproject/private/config.properties -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=/home/leo/.netbeans/8.2/build.properties 3 | -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processors.list= 4 | annotation.processing.run.all.processors=true 5 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 6 | application.title=JavaComancheLikeSimpleVoxelSpaceEngineTest 7 | application.vendor=leonardo 8 | build.classes.dir=${build.dir}/classes 9 | build.classes.excludes=**/*.java,**/*.form 10 | # This directory is removed when the project is cleaned: 11 | build.dir=build 12 | build.generated.dir=${build.dir}/generated 13 | build.generated.sources.dir=${build.dir}/generated-sources 14 | # Only compile against the classpath explicitly listed here: 15 | build.sysclasspath=ignore 16 | build.test.classes.dir=${build.dir}/test/classes 17 | build.test.results.dir=${build.dir}/test/results 18 | # Uncomment to specify the preferred debugger connection transport: 19 | #debug.transport=dt_socket 20 | debug.classpath=\ 21 | ${run.classpath} 22 | debug.test.classpath=\ 23 | ${run.test.classpath} 24 | # This directory is removed when the project is cleaned: 25 | dist.dir=dist 26 | dist.jar=${dist.dir}/JavaComancheLikeSimpleVoxelSpaceEngineTest.jar 27 | dist.javadoc.dir=${dist.dir}/javadoc 28 | endorsed.classpath= 29 | excludes= 30 | includes=** 31 | jar.archive.disabled=${jnlp.enabled} 32 | jar.compress=false 33 | jar.index=${jnlp.enabled} 34 | javac.classpath= 35 | # Space-separated list of extra javac options 36 | javac.compilerargs= 37 | javac.deprecation=false 38 | javac.external.vm=false 39 | javac.processorpath=\ 40 | ${javac.classpath} 41 | javac.source=1.6 42 | javac.target=1.6 43 | javac.test.classpath=\ 44 | ${javac.classpath}:\ 45 | ${build.classes.dir} 46 | javac.test.processorpath=\ 47 | ${javac.test.classpath} 48 | javadoc.additionalparam= 49 | javadoc.author=false 50 | javadoc.encoding=${source.encoding} 51 | javadoc.noindex=false 52 | javadoc.nonavbar=false 53 | javadoc.notree=false 54 | javadoc.private=false 55 | javadoc.splitindex=true 56 | javadoc.use=true 57 | javadoc.version=false 58 | javadoc.windowtitle= 59 | jnlp.codebase.type=no.codebase 60 | jnlp.descriptor=application 61 | jnlp.enabled=false 62 | jnlp.mixed.code=default 63 | jnlp.offline-allowed=false 64 | jnlp.signed=false 65 | jnlp.signing= 66 | jnlp.signing.alias= 67 | jnlp.signing.keystore= 68 | main.class=View 69 | manifest.file=manifest.mf 70 | meta.inf.dir=${src.dir}/META-INF 71 | mkdist.disabled=false 72 | platform.active=JDK1.6 73 | run.classpath=\ 74 | ${javac.classpath}:\ 75 | ${build.classes.dir} 76 | # Space-separated list of JVM arguments used when running the project. 77 | # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. 78 | # To set system properties for unit tests define test-sys-prop.name=value: 79 | run.jvmargs=-Dsun.java2d.opengl=false -Xms1024m -Xmx1024m 80 | run.test.classpath=\ 81 | ${javac.test.classpath}:\ 82 | ${build.test.classes.dir} 83 | source.encoding=ISO-8859-1 84 | src.dir=src 85 | test.src.dir=test 86 | -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | JavaComancheLikeSimpleVoxelSpaceEngineTest 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/View.java: -------------------------------------------------------------------------------- 1 | import java.awt.Color; 2 | import java.awt.Graphics; 3 | import java.awt.Graphics2D; 4 | import java.awt.image.BufferedImage; 5 | import java.io.IOException; 6 | import java.util.logging.Level; 7 | import java.util.logging.Logger; 8 | import javax.imageio.ImageIO; 9 | import javax.swing.JFrame; 10 | import javax.swing.JPanel; 11 | import javax.swing.SwingUtilities; 12 | 13 | /** 14 | * Comanche-like simple voxel space engine Test 15 | * @author leonardo 16 | */ 17 | public class View extends JPanel { 18 | 19 | private double px = 800, py = 500, pd = 1.7; // view position = (px, py) / view direction = pd (angle in rad) 20 | private BufferedImage offscreen, heightMap, textureMap; 21 | private final Color skyColor = new Color(150, 170, 170); 22 | 23 | public View() { 24 | offscreen = new BufferedImage(400, 300, BufferedImage.TYPE_INT_RGB); 25 | try { 26 | heightMap = ImageIO.read(getClass().getResourceAsStream("mountains.jpg")); 27 | textureMap = ImageIO.read(getClass().getResourceAsStream("mountains3.jpg")); 28 | } catch (IOException ex) { 29 | Logger.getLogger(View.class.getName()).log(Level.SEVERE, null, ex); 30 | } 31 | } 32 | 33 | @Override 34 | protected void paintComponent(Graphics g) { 35 | super.paintComponent(g); 36 | draw(offscreen.createGraphics()); 37 | g.drawImage(offscreen, 0, 0, 800, 600, 0, 0, 400, 300, null); 38 | // animation / move view position 39 | px += 2 * Math.cos(pd); 40 | py += 2 * Math.sin(pd); 41 | pd += 0.01; 42 | repaint(); 43 | } 44 | 45 | private void draw(Graphics2D g) { 46 | g.setBackground(skyColor); 47 | g.clearRect(0, 0, getWidth(), getHeight()); 48 | // cast rays 49 | int sx = 0; 50 | for (double angle = -0.5; angle < 1; angle += 0.0035) { 51 | int maxScreenHeight = getHeight(); 52 | double s = Math.cos(pd + angle); 53 | double c = Math.sin(pd + angle); 54 | for (int depth = 10; depth < 600; depth += 1) { 55 | int hmx = (int) (px + depth * s); 56 | int hmy = (int) (py + depth * c); 57 | if (hmx < 0 || hmy < 0 || hmx > heightMap.getWidth() - 1 || hmy > heightMap.getHeight() - 1) { 58 | continue; 59 | } 60 | int height = heightMap.getRGB(hmx, hmy) & 255; 61 | int color = addFog(textureMap.getRGB(hmx, hmy), depth); 62 | 63 | // draw 3D vertical terrain line / circular projection 64 | double sy = 120 * (300 - height) / depth; 65 | if (sy > maxScreenHeight) { 66 | continue; 67 | } 68 | for (int y = (int) sy; y <= maxScreenHeight; y++) { 69 | if (y < 0 || sx > offscreen.getWidth() - 1 || y > offscreen.getHeight() - 1) { 70 | continue; 71 | } 72 | offscreen.setRGB(sx, y, color); 73 | } 74 | maxScreenHeight = (int) sy; 75 | } 76 | sx++; 77 | } 78 | } 79 | 80 | private int addFog(int color, int depth) { 81 | int r = (color >> 16) & 255; 82 | int g = (color >> 8) & 255; 83 | int b = color & 255; 84 | double p = depth > 100 ? (depth - 100) / 500.0 : 0; 85 | r = (int) (r + (skyColor.getRed() - r) * p); 86 | g = (int) (g + (skyColor.getGreen() - g) * p); 87 | b = (int) (b + (skyColor.getBlue() - b) * p); 88 | return (r << 16) + (g << 8) + b; 89 | } 90 | 91 | public static void main(String[] args) { 92 | SwingUtilities.invokeLater(new Runnable() { 93 | @Override 94 | public void run() { 95 | JFrame frame = new JFrame(); 96 | frame.setTitle("Java Simple Voxel Space Engine Test"); 97 | frame.getContentPane().add(new View()); 98 | frame.setSize(800, 600); 99 | frame.setLocationRelativeTo(null); 100 | frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 101 | frame.setResizable(false); 102 | frame.setVisible(true); 103 | } 104 | }); 105 | } 106 | 107 | } 108 | -------------------------------------------------------------------------------- /src/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardo-ono/JavaComancheLikeSimpleVoxelSpaceEngineTest/0d34d0d0e3a5a06c3ed6dd619eaa0eb0bd2f1231/src/mountains.jpg -------------------------------------------------------------------------------- /src/mountains3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardo-ono/JavaComancheLikeSimpleVoxelSpaceEngineTest/0d34d0d0e3a5a06c3ed6dd619eaa0eb0bd2f1231/src/mountains3.jpg --------------------------------------------------------------------------------