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
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
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
1272
1273
1274
1275
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
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
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
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
/**
* @file MonteCarloSelfLocator.cpp
*
* @author <a href="mailto:mellmann@informatik.hu-berlin.de">Heinrich Mellmann</a>
* Implementation of class MonteCarloSelfLocator
*/

#include "MonteCarloSelfLocator.h"

// tools
#include "Tools/Math/Probabilistics.h"
#include "Tools/DataStructures/RingBufferWithSum.h"
#include "Tools.h"

using namespace std;
using namespace mcsl;

MonteCarloSelfLocator::MonteCarloSelfLocator() 
  :
  state(LOCALIZE),
  lastState(LOCALIZE),
  islocalized(false),
  updatedByGoalPosts(false),
  theSampleSet(100),
  canopyClustering(parameters.thresholdCanopy),
  slowWeighting(0.0),
  fastWeighting(0.0),
  effective_number_of_samples(0.0)
{
  // debug
  DEBUG_REQUEST_REGISTER("MCSLS:reset_samples", "reset the sample set", false);
  DEBUG_REQUEST_REGISTER("MCSLS:user_defined_pose", "allows the user to modify the location of the robot", false);

  // field drawings
  DEBUG_REQUEST_REGISTER("MCSLS:draw_Samples", "draw sample set before resampling", false);
  DEBUG_REQUEST_REGISTER("MCSLS:draw_BackendSamples", "draw sample set before resampling", false);
  DEBUG_REQUEST_REGISTER("MCSLS:draw_Samples_effective", "draw sample set before resampling", false);
  DEBUG_REQUEST_REGISTER("MCSLS:draw_post_choice", "", false);
  DEBUG_REQUEST_REGISTER("MCSLS:draw_sensor_belief", "", false);
  DEBUG_REQUEST_REGISTER("MCSLS:draw_sensorResetBySensingGoalModel", "", false);
  DEBUG_REQUEST_REGISTER("MCSLS:draw_sensorResetByMiddleCircle", "", false);
  DEBUG_REQUEST_REGISTER("MCSLS:draw_state", "visualizes the state of the self locator on the field", false);
  DEBUG_REQUEST_REGISTER("MCSLS:draw_updateByLinePoints", "", false);

  // resampling
  DEBUG_REQUEST_REGISTER("MCSLS:resample_sus", "", false);
  DEBUG_REQUEST_REGISTER("MCSLS:resample_simple", "", false);
  DEBUG_REQUEST_REGISTER("MCSLS:resample_gt", "", false);
  DEBUG_REQUEST_REGISTER("MCSLS:resample_hm", "", false);

  // resulting position
  DEBUG_REQUEST_REGISTER("MCSLS:draw_Cluster", "draw the clustered particle set", false);
  DEBUG_REQUEST_REGISTER("MCSLS:draw_position","draw robots position (self locator)", false);
  DEBUG_REQUEST_REGISTER("MCSLS:draw_deviation", "", false);

  DEBUG_REQUEST_REGISTER("MCSLS:state:KIDNAPPED", "", false);
  DEBUG_REQUEST_REGISTER("MCSLS:state:BLIND", "", false);
  DEBUG_REQUEST_REGISTER("MCSLS:state:LOCALIZE", "", false);
  DEBUG_REQUEST_REGISTER("MCSLS:state:TRACKING", "", false);

  initializeSampleSet(getFieldInfo().carpetRect, theSampleSet);
  getDebugParameterList().add(&parameters);
}

MonteCarloSelfLocator::~MonteCarloSelfLocator() 
{
  getDebugParameterList().remove(&parameters);
}


void MonteCarloSelfLocator::execute()
{
  // reset
  // TODO: comment why is this here
  updatedByGoalPosts = false;

  // TODO: why not MCSL?
  DEBUG_REQUEST("MCSLS:reset_samples",

	// NOTE: depends on game state 
	// TODO: can this more explicite?
    resetLocator(); 
    state = LOCALIZE;

    DEBUG_REQUEST("MCSLS:draw_Samples", 
      FIELD_DRAWING_CONTEXT;
      theSampleSet.drawImportance(getDebugDrawings());
    );

    return;
  );

  DEBUG_REQUEST("MCSLS:user_defined_pose",

	// TODO: better Pose2D?
    Vector2d pos;
    double rot(0);
    MODIFY("MCSLS:posX", pos.x);
    MODIFY("MCSLS:posY", pos.y);
    MODIFY("MCSLS:rot", rot);
    
    // sample particles in a 100mm^2 rect of the user defined pose
    initializeSampleSetFixedRotation(Geometry::Rect2d(pos - Vector2d(50,50), pos + Vector2d(50,50)), rot, theSampleSet);

    islocalized = true;
    //TODO: should the state not rather be TRACKING?
	state = LOCALIZE;

    DEBUG_REQUEST("MCSLS:draw_Samples",
      FIELD_DRAWING_CONTEXT;
      theSampleSet.drawImportance(getDebugDrawings());
    );

    return;
  );

  // treat the situation when the robot has been lifted from the ground
  // (keednapped)

  // only treat kidnapping in stand, walk or init(!)
  bool motion_ok_kidnap = getMotionStatus().currentMotion == motion::stand ||
                          getMotionStatus().currentMotion == motion::init  ||
                          getMotionStatus().currentMotion == motion::walk;

  // true when the robot was lifted up
  // TODO: check if check for upright necessary (e.g., when robot is in stand by exident after fall)
  bool body_lift_up =  getBodyState().isLiftedUp;

  if(parameters.treatLiftUp && motion_ok_kidnap && body_lift_up) {
    state = KIDNAPPED;
  }

  // Neded to decide for BLIND
  // HACK: TODO: comment - what is it here for?
  bool last_motion_ok = getMotionStatus().lastMotion == motion::stand ||
                        getMotionStatus().lastMotion == motion::walk;                    

  bool motion_ok = (getMotionStatus().currentMotion == motion::stand || 
                    getMotionStatus().currentMotion == motion::walk)
                   // hack: give stand some time in case the last motion was not walk or stand
                   // remark: walk is only executed after walk or stand, so this condition is only relevant for stand
				   // TODO: can this be replaced with something like getMotionStatus().stand_done? .target_reached
                   && (last_motion_ok || getFrameInfo().getTimeSince(getMotionStatus().time) > 5000); 

  bool body_upright = getBodyState().fall_down_state == BodyState::upright;

  // TODO: better logic?
  if(state != KIDNAPPED) 
  {
    // TODO: does 'treatInitState' make sense? BLIND can also occur after, e.g., fall 
	// TODO: add comment, why is PlayerInfo::penalized a criterium?
    if(parameters.treatInitState && (!motion_ok || !body_upright || getPlayerInfo().robotState == PlayerInfo::penalized))
    {
      state = BLIND;
    }
  }

  DEBUG_REQUEST("MCSLS:state:KIDNAPPED", state = KIDNAPPED; );
  DEBUG_REQUEST("MCSLS:state:BLIND", state = BLIND; );
  DEBUG_REQUEST("MCSLS:state:LOCALIZE", state = LOCALIZE; );
  DEBUG_REQUEST("MCSLS:state:TRACKING", state = TRACKING; );


  DEBUG_REQUEST("MCSLS:draw_state",
    FIELD_DRAWING_CONTEXT;
    switch(state) {
      case KIDNAPPED: TEXT_DRAWING(0, 0, "KIDNAPPED"); break;
      case BLIND: TEXT_DRAWING(0, 0, "BLIND"); break;
      case LOCALIZE: TEXT_DRAWING(0, 0, "LOCALIZE"); break;
      case TRACKING: TEXT_DRAWING(0, 0, "TRACKING"); break;
      default: TEXT_DRAWING(0, 0, "DEFAULT");
    }
  );

  //HACK: does it have to be static? member? move into the state machine?
  static unsigned localize_start = getFrameInfo().getTime();
  if(state != LOCALIZE) {
    localize_start = getFrameInfo().getTime();
  }

  switch(state) 
  {
    case KIDNAPPED:
    {
      state = LOCALIZE;
      resetLocator();
      islocalized = false;
      getRobotPose().isValid = false;
      lastState = KIDNAPPED;
      break;
    }
    case BLIND:
    {
      if(parameters.updateByOdometryWhenBlind) {
        updateByOdometry(theSampleSet, parameters.motionNoise, true);
      }

	  // go back to the last state before BLIND
      if(!islocalized) { //TODO: can we use islocalized = (lastState==TRACKING) here?
        state = LOCALIZE;
      } else {
        state = TRACKING;
      }
      lastState = BLIND;
      break;
    }
    case LOCALIZE:
    {
      updateByOdometry(theSampleSet, parameters.motionNoise, false);
    
      theSampleSet.resetLikelihood();

      // TODO: why is this a hack? Elaborate.
      // HACK: separate update by the goal posts
      if(parameters.updateByGoalPostLocalize)
      {
        if(getGoalPercept().getNumberOfSeenPosts() > 0) {
          updateByGoalPosts(getGoalPercept(), theSampleSet);
          updatedByGoalPosts = true;
        }
        if(getGoalPerceptTop().getNumberOfSeenPosts() > 0) {
          updateByGoalPosts(getGoalPerceptTop(), theSampleSet);
          updatedByGoalPosts = true;
        }
      }

      updateBySensors(theSampleSet);

      // use prior knowledge
      if(parameters.updateBySituation) //  && lastState == KIDNAPPED
      {
        updateBySituation();
      }
      
      // TODO. check what does it do?!
      // NOTE: statistics has to be after updates and before resampling
      // NOTE: normalizes the likelihood
      updateStatistics(theSampleSet);

      resampleMH(theSampleSet);
      //resampleMHOld(theSampleSet);

      if(parameters.sensorResetByGoalModel) {
        sensorResetBySensingGoalModel(theSampleSet, (int)theSampleSet.size() - 1);
      }
      if(parameters.sensorResetByMiddleCircle) {
        sensorResetByMiddleCircle(theSampleSet);
      }

      // estimate the state
      canopyClustering.cluster(mhBackendSet);
    
      Moments2<2> moments;
      Sample meanPose = mhBackendSet.meanOfCluster(moments, canopyClustering.getLargestClusterID());

      unsigned localize_time = getFrameInfo().getTimeSince(localize_start);

	    // HACK: go to tracking if time>5s or more than 80% of samples did gather in a cluster
      if(localize_time > 5000 && moments.getRawMoment(0,0) > 0.8*(double)mhBackendSet.size()) {
        theSampleSet = mhBackendSet; // todo: implement swap
        state = TRACKING;
      }

      calculatePose(mhBackendSet);
      
      DEBUG_REQUEST("MCSLS:draw_Samples_effective", 
        FIELD_DRAWING_CONTEXT;
        mhBackendSet.drawImportance(getDebugDrawings());
      );

      islocalized = true;
      lastState = LOCALIZE;
      break;
    }
    case TRACKING:
    {
      // TODO: measure odometry error?
      updateByOdometry(theSampleSet, parameters.motionNoise, false);

      theSampleSet.resetLikelihood();

      // HACK: separate update by the goal posts
      if(parameters.updateByGoalPostTracking)
      {
        if(getGoalPercept().getNumberOfSeenPosts() > 0) {
          updateByGoalPosts(getGoalPercept(), theSampleSet);
          updatedByGoalPosts = true;
        }
        if(getGoalPerceptTop().getNumberOfSeenPosts() > 0) {
          updateByGoalPosts(getGoalPerceptTop(), theSampleSet);
          updatedByGoalPosts = true;
        }
      }

      updateBySensors(theSampleSet);


      //HACK
      if(parameters.updateBySituation) {
        if(getPlayerInfo().robotState == PlayerInfo::set) 
        {
          updateByOwnHalf(theSampleSet);
        }
      }


      // NOTE: statistics has to be after updates and before resampling
      // NOTE: normalizes the likelihood
      updateStatistics(theSampleSet);

      if(parameters.resampleSUS) {
        resampleSUS(theSampleSet, (int)theSampleSet.size());
      }
      if(parameters.resampleGT07) {
        resampleGT07(theSampleSet, true);
      }

      if(parameters.sensorResetByMiddleCircle) {
        sensorResetByMiddleCircle(theSampleSet);
      }

	  // TODO: we don't have a change TRACKING -> LOCALIZE

      calculatePose(theSampleSet);

      DEBUG_REQUEST("MCSLS:draw_Samples_effective", 
        FIELD_DRAWING_CONTEXT;
        theSampleSet.drawImportance(getDebugDrawings());
      );

      lastState = TRACKING;
      break;
    }
    default: assert(false); // should never be here
  }
  
  lastRobotOdometry = getOdometryData();


  /************************************
  * STEP VII: execude some debug requests (drawings)
  ************************************/

  DEBUG_REQUEST("MCSLS:resample_sus",
    resampleSUS(theSampleSet, (int)theSampleSet.size());
  );

  DEBUG_REQUEST("MCSLS:resample_gt", 
    resampleGT07(theSampleSet, true);
  );

  DEBUG_REQUEST("MCSLS:resample_hm", 
    resampleMH(theSampleSet);
  );
  
  DEBUG_REQUEST("MCSLS:resample_simple", 
    resampleSimple(theSampleSet, (int)((double)theSampleSet.size() - effective_number_of_samples + 0.5));
  );

  DEBUG_REQUEST("MCSLS:draw_sensor_belief",
    draw_sensor_belief();
  );

  DEBUG_REQUEST("MCSLS:draw_Samples",
    FIELD_DRAWING_CONTEXT;
    theSampleSet.drawImportance(getDebugDrawings());
  );

  DEBUG_REQUEST("MCSLS:draw_BackendSamples",
    FIELD_DRAWING_CONTEXT;
    mhBackendSet.drawImportance(getDebugDrawings(), false);
  );

}//end execute

void MonteCarloSelfLocator::resetLocator()
{
  if(parameters.resetOwnHalf && getPlayerInfo().robotState == PlayerInfo::set) {
    initializeSampleSetFixedRotation(getFieldInfo().ownHalfRect, 0, theSampleSet);
  } else {
    initializeSampleSet(getFieldInfo().carpetRect, theSampleSet);
  }
    
  mhBackendSet = theSampleSet;
  //mhBackendSet.setLikelihood(0.0);
}

void MonteCarloSelfLocator::updateByOdometry(SampleSet& sampleSet, bool noise, bool onlyRotation) const
{
  if(parameters.updateByOdometryRelative) {
    updateByOdometryRelative(sampleSet, noise, onlyRotation);
  } else {
    updateByOdometryAbsolute(sampleSet, noise, onlyRotation);
  }
}

// odometry update with the independend noise model
void MonteCarloSelfLocator::updateByOdometryAbsolute(SampleSet& sampleSet, bool noise, bool onlyRotation) const
{
  Pose2D odometryDelta = getOdometryData() - lastRobotOdometry;

  if(onlyRotation) {
    odometryDelta.translation = Vector2d();
  }

  for (size_t i = 0; i < sampleSet.size(); i++)
  {
    sampleSet[i] += odometryDelta;
    if(noise)
    {
      sampleSet[i].translation.x += (Math::random()-0.5)*parameters.motionNoiseDistance;
      sampleSet[i].translation.y += (Math::random()-0.5)*parameters.motionNoiseDistance;
      sampleSet[i].rotation = Math::normalize(sampleSet[i].rotation + (Math::random()-0.5)*parameters.motionNoiseAngle);
    }
  }
}//end updateByOdometryAbsolute

// odometry update with the relative noise model
void MonteCarloSelfLocator::updateByOdometryRelative(SampleSet& sampleSet, bool noise, bool onlyRotation) const
{
  Pose2D odometryDelta = getOdometryData() - lastRobotOdometry;

  if(onlyRotation) {
    odometryDelta.translation = Vector2d();
  }

  for (size_t i = 0; i < sampleSet.size(); i++)
  {
    Pose2D odometryModel(odometryDelta);

    if(noise) {
      odometryModel.translation += odometryModel.translation * (Math::random()-0.5)*parameters.motionNoiseDistanceRelative;
      odometryModel.rotation += odometryModel.rotation * (Math::random()-0.5)*parameters.motionNoiseAngleRelative;
    }

    sampleSet[i] += odometryModel;
    Math::normalize(sampleSet[i].rotation);
  }
}//end updateByOdometryRelative

void MonteCarloSelfLocator::updateBySituation()
{
  if(getSituationPrior().currentPrior == getSituationPrior().firstReady)
  {
    updateByStartPositions(theSampleSet);
  }
  else if(getSituationPrior().currentPrior == getSituationPrior().positionedInSet)
  {
    updateByOwnHalfLookingForward(theSampleSet);
  }
  else if(getSituationPrior().currentPrior == getSituationPrior().goaliePenalizedInSet)
  {
    updateByGoalBox(theSampleSet);
  }
  else if(getSituationPrior().currentPrior == getSituationPrior().set)
  {
    updateByOwnHalf(theSampleSet);
  }
  else if(getSituationPrior().currentPrior == getSituationPrior().playAfterPenalized)
  {
    updateBySidePositions(theSampleSet);
  }
  else if(getSituationPrior().currentPrior == getSituationPrior().oppHalf)
  {
    updateByOppHalf(theSampleSet);
  }
  else 
  {
    DEBUG_REQUEST("MCSLS:draw_state",
      FIELD_DRAWING_CONTEXT;
      PEN("000000", 30);
      const Vector2d& fieldMin = getFieldInfo().fieldRect.min();
      const Vector2d& fieldMax = getFieldInfo().fieldRect.max();
      BOX(fieldMin.x, fieldMin.y, fieldMax.x, fieldMax.y);
      LINE(fieldMin.x, fieldMin.y, fieldMax.x, fieldMax.y);
      LINE(fieldMin.x, fieldMax.y, fieldMax.x, fieldMin.y);
    );
  }
}

bool MonteCarloSelfLocator::updateBySensors(SampleSet& sampleSet) const
{
  /*
  // NOTE: those updates are done directly in separate phases
  if(parameters.updateByGoalPost)
  {
    if(getGoalPercept().getNumberOfSeenPosts() > 0) {
      updateByGoalPosts(getGoalPercept(), sampleSet);
    }
    if(getGoalPerceptTop().getNumberOfSeenPosts() > 0) {
      updateByGoalPosts(getGoalPerceptTop(), sampleSet);
    }
  }
  */

  if(parameters.updateByRansacCircle && getRansacCirclePercept2018().wasSeen) {
    updateByMiddleCircle(getRansacCirclePercept2018().center, sampleSet);
  }

  if(parameters.updateByCompas && getProbabilisticQuadCompas().isValid()) {
    updateByCompas(sampleSet);
  }

  if(parameters.updateByLinePoints)
  {
    if(!getLineGraphPercept().edgelsOnField.empty()) {
      updateByLinePoints(getLineGraphPercept(), sampleSet);
    }
  }

  if(parameters.updateByLinePercept)
  {
    /*
    if(!getLinePercept().lines.empty()) {
      updateByLines(getLinePercept(), sampleSet);
    }*/
    if(!getRansacLinePercept().fieldLineSegments.empty()) {
      updateByLines2018(getRansacLinePercept(), sampleSet);
    }
  }

  if(parameters.updateByShortLinePercept)
  {
    /*
    if(!getLinePercept().short_lines.empty()) {
      updateByShortLines(getLinePercept(), sampleSet);
    }*/
    if(!getShortLinePercept().fieldLineSegments.empty()) {
      updateByLines2018(getShortLinePercept(), sampleSet);
    }
  }

  return true;
}

void MonteCarloSelfLocator::updateByGoalPosts(const GoalPercept& goalPercept, SampleSet& sampleSet) const
{
  for(int i = 0; i < goalPercept.getNumberOfSeenPosts(); i++)
  {
    const GoalPercept::GoalPost& seenPost = goalPercept.getPost(i);
    
    // HACK
    if(state == TRACKING && parameters.maxAcceptedGoalErrorWhileTracking > 0) {

      const Vector2d* leftGoalPosition = NULL;
      const Vector2d* rightGoalPosition = NULL;

      if((getRobotPose()*seenPost.position).x > 0)
      {
        leftGoalPosition = &(getFieldInfo().opponentGoalPostLeft);
        rightGoalPosition = &(getFieldInfo().opponentGoalPostRight);
      } else {
        // own goals are switched (!)
        leftGoalPosition = &(getFieldInfo().ownGoalPostRight);
        rightGoalPosition = &(getFieldInfo().ownGoalPostLeft);
      }

      Vector2d globalPercept = getRobotPose() * seenPost.position;
      double min_dist = min((globalPercept - *rightGoalPosition).abs(),(globalPercept - *leftGoalPosition).abs());

      if(min_dist < parameters.maxAcceptedGoalErrorWhileTracking) {
        updateBySingleGoalPost(seenPost, sampleSet);
      }
    } else {
      updateBySingleGoalPost(seenPost, sampleSet);
    }
  }
}

void MonteCarloSelfLocator::updateBySingleGoalPost(const GoalPercept::GoalPost& seenPost, SampleSet& sampleSet) const
{
  const double sigmaAngle    = parameters.goalPostSigmaAngle;
  const double sigmaDistance = parameters.goalPostSigmaDistance;
  const double cameraHeight  = getCameraMatrix().translation.z;

  const double seenDistance = seenPost.position.abs();
  const double seenAngle = seenPost.position.angle();

  const Vector2d* leftGoalPosition = NULL;
  const Vector2d* rightGoalPosition = NULL;

  for (size_t j = 0; j < sampleSet.size(); j++)
  { 
    Sample& sample = sampleSet[j];
    Vector2d expectedPostPosition;

    // each particle decides for itself
    //if(fabs(Math::normalize(sample.rotation + seenAngle)) < Math::pi_2)
    if((sample*seenPost.position).x > 0)
    {
      leftGoalPosition = &(getFieldInfo().opponentGoalPostLeft);
      rightGoalPosition = &(getFieldInfo().opponentGoalPostRight);
    } else {
      // own goals are switched (!)
      leftGoalPosition = &(getFieldInfo().ownGoalPostRight);
      rightGoalPosition = &(getFieldInfo().ownGoalPostLeft);
    }

    if(seenPost.type == GoalPercept::GoalPost::rightPost)
    {
      expectedPostPosition = *rightGoalPosition;
      // switch if the robot is behind the goal
      if( (expectedPostPosition.x < 0 && sample.translation.x < expectedPostPosition.x) ||
          (expectedPostPosition.x > 0 && sample.translation.x > expectedPostPosition.x))
      {
        expectedPostPosition = *leftGoalPosition;
      }
    } else if(seenPost.type == GoalPercept::GoalPost::leftPost) {
      expectedPostPosition = *leftGoalPosition;
      // switch if the robot is behind the goal
      if( (expectedPostPosition.x < 0 && sample.translation.x < expectedPostPosition.x) ||
          (expectedPostPosition.x > 0 && sample.translation.x > expectedPostPosition.x))
      {
        expectedPostPosition = *rightGoalPosition;
      }
    } else { // unknown post
      Vector2d globalPercept = sample * seenPost.position;
      // choose the closest one
      if((globalPercept - *rightGoalPosition).abs() < (globalPercept - *leftGoalPosition).abs()) {
        expectedPostPosition = *rightGoalPosition;
      } else {
        expectedPostPosition = *leftGoalPosition;
      }
    }

    Vector2d relPost = sample/expectedPostPosition;
    double expectedDistance = relPost.abs();
    double expectedAngle = relPost.angle();

    DEBUG_REQUEST("MCSLS:draw_post_choice",
      if(seenPost.type == GoalPercept::GoalPost::rightPost) {
        PEN("FF000099",1);
      } else if(seenPost.type == GoalPercept::GoalPost::leftPost) {
        PEN("0000FF99",1);
      } else {
        PEN("00000099",1);
      }
      LINE(sample.translation.x, sample.translation.y, expectedPostPosition.x, expectedPostPosition.y);
    );

    if(seenPost.positionReliable) {
      sample.likelihood *= computeDistanceWeight(seenDistance, expectedDistance, cameraHeight, sigmaDistance);
    }
    sample.likelihood *= computeAngleWeight(seenAngle, expectedAngle, sigmaAngle);

  } //end for j (samples)
}//end updateBySingleGoalPost

void MonteCarloSelfLocator::updateByCompas(SampleSet& sampleSet) const
{
  for(size_t i = 0; i < sampleSet.size(); i++) {
    Sample& sample = sampleSet[i];
    sample.likelihood *= getProbabilisticQuadCompas().probability(-sample.rotation);
  }
}



void MonteCarloSelfLocator::updateByLinePoints(const LineGraphPercept& lineGraphPercept, SampleSet& sampleSet) const
{
  const double sigmaDistance = parameters.linePointsSigmaDistance;
  //const double sigmaAngle    = parameters.linePointsSigmaAngle;
  const double cameraHeight  = getCameraMatrix().translation.z;

  DEBUG_REQUEST("MCSLS:draw_updateByLinePoints",
    FIELD_DRAWING_CONTEXT;
    PEN("000000", 10);
  );

  for(size_t i = 0; i < lineGraphPercept.edgelsOnField.size() && i < (size_t)parameters.linePointsMaxNumber; i++) 
  {
    int idx = Math::random((int)lineGraphPercept.edgelsOnField.size());
    const Vector2d& seen_point_relative = lineGraphPercept.edgelsOnField[idx].point;

    Vector2d seen_point_g = getRobotPose()*seen_point_relative;

    DEBUG_REQUEST("MCSLS:draw_updateByLinePoints",
      CIRCLE(seen_point_g.x, seen_point_g.y, 20);
    );

    for(size_t s=0; s < sampleSet.size(); s++)
    {
      Sample& sample = sampleSet[s];

      Vector2d seen_point_global = sample*seen_point_relative;
      LinesTable::NamedPoint line_point_global = getFieldInfo().fieldLinesTable.get_closest_point(seen_point_global, LinesTable::all_lines);
     
      // there is no such line
      if(line_point_global.id == -1) {
        continue;
      }

      // get the line
      //const Math::LineSegment& ref_line = getFieldInfo().fieldLinesTable.getLines()[p.id];

      Vector2d line_point_relative(sample/line_point_global.position);

      sample.likelihood *= computeDistanceWeight(seen_point_relative.abs(), line_point_relative.abs(), cameraHeight, sigmaDistance);
    }
  }
}//end updateByLinePoints

void MonteCarloSelfLocator::updateByLines2018(const LinePercept2018& linePercept, SampleSet& sampleSet) const
{
  const double cameraHeight = getCameraMatrix().translation.z;
  const double sigmaDistance = parameters.lineSigmaDistance;
  const double sigmaAngle = parameters.lineSigmaAngle;
  double shortestLine = 1e+5; // very long...

  // todo: parameter for max lines to update by
  for(size_t lp=0; lp < linePercept.fieldLineSegments.size() && lp < (size_t)parameters.lineMaxNumber; lp++)
  {
    //int idx = Math::random((int)linePercept.lines.size());
    // dont use the lines which are parts of the circle
    // when the circle itself was detected
    //if(linePercept.lines[idx].type == LinePercept::C && linePercept.middleCircleWasSeen)
    //  continue;

    if(linePercept.fieldLineSegments[lp].getLength() < parameters.lineMinLength) { // don't use too short lines
      continue;
    }


    //const int centerLine_id = 4; // HACK: see FieldInfo
    // special treatment for the center line
    //if(linePercept.lines[lp].seen_id == LinePercept::center_line)
    //{
      // get the center line
      //const Math::LineSegment& centerLine = getFieldInfo().fieldLinesTable.getLines()[centerLine_id];
    //}//end if


    // TODO: separate class
    //int lineVotes[30] = {0};
    //int maxIdx = 0;

    const Math::LineSegment& relPercept = linePercept.fieldLineSegments[lp];

    for(size_t s=0; s < sampleSet.size(); s++)
    {
      Sample& sample = sampleSet[s];

      // statistics
      shortestLine = std::min(shortestLine, relPercept.getLength());

      // translocation of the line percept to the global coords
      Vector2d abs_begin      = sample*relPercept.begin();
      Vector2d abs_end        = sample*relPercept.end();
      Vector2d abs_direction  = abs_end - abs_begin;
      Vector2d abs_mid        = (abs_begin+abs_end)*0.5;

      // classify the line percept
      // todo: this may make problems when the lines are distored
      int length    = (relPercept.getLength() > 700)?LinesTable::long_lines:(LinesTable::short_lines|LinesTable::long_lines|LinesTable::circle_lines);
      int direction = (fabs(abs_direction.x) > fabs(abs_direction.y))?LinesTable::along_lines:LinesTable::across_lines;
      //int type      = (linePercept.lines[lp].type == LinePercept::C)?LinesTable::circle_lines:length|direction;
      int type      = length|direction;

      /*
      const LinesTable::NamedPoint& p_mid =
        (type&LinesTable::circle_lines)?
          getFieldInfo().fieldLinesTable.get_closest_point_direct(abs_mid, LinesTable::idx_circle):
          getFieldInfo().fieldLinesTable.get_closest_line_point_fast(abs_mid, length, direction);
          */
      // get the closest line in the world
      //LinesTable::NamedPoint p_begin = getFieldInfo().fieldLinesTable.get_closest_point(absPercept.begin(), type);
      //LinesTable::NamedPoint p_end = getFieldInfo().fieldLinesTable.get_closest_point(absPercept.end(), type);
      LinesTable::NamedPoint p_mid = getFieldInfo().fieldLinesTable.get_closest_point(abs_mid, type);

      // there is no such line
      if(p_mid.id == -1) {
        continue;
      }

      // get the line
      const Math::LineSegment& ref_line = getFieldInfo().fieldLinesTable.getLines()[p_mid.id];

      /*
      DEBUG_REQUEST("MCSL:draw_corner_votes",
        // vote for the corner id
        ASSERT(p_mid.id <= 29);
        lineVotes[p_mid.id]++;
        if(lineVotes[p_mid.id] > lineVotes[maxIdx])
          maxIdx = p_mid.id;
      );
      */
      // project the perceived line to the reference
      Vector2d p1 = ref_line.projection(abs_begin);
      Vector2d p2 = ref_line.projection(abs_end);
      Vector2d pm = p_mid.position;

      /*
      DEBUG_REQUEST("MCSL:draw_corner_votes",
        if(linePercept.lines[lp].type != LinePercept::C) {
          LINE(p1.x, p1.y, pm.x, pm.y);
          LINE(p2.x, p2.y, pm.x, pm.y);
      });
      */

      {
        Vector2d relP1(sample/p1);
        sample.likelihood *= computeDistanceWeight(relPercept.begin().abs(), relP1.abs(), cameraHeight, sigmaDistance);
        sample.likelihood *= computeAngleWeight(relPercept.begin().angle(), relP1.angle(), sigmaAngle);
      }
      {
        Vector2d relP2(sample/p2);
        sample.likelihood *= computeDistanceWeight(relPercept.end().abs(), relP2.abs(), cameraHeight, sigmaDistance);
        sample.likelihood *= computeAngleWeight(relPercept.end().angle(), relP2.angle(), sigmaAngle);
      }
      {
        Vector2d relPM(sample/pm);
        Vector2d relMidPoint = relPercept.point(0.5*relPercept.getLength());
        sample.likelihood *= computeDistanceWeight(relMidPoint.abs(), relPM.abs(), cameraHeight, sigmaDistance);
        sample.likelihood *= computeAngleWeight(relMidPoint.angle(), relPM.angle(), sigmaAngle);
      }
    }//end for

    /*
    DEBUG_REQUEST("MCSL:draw_corner_votes",
      FIELD_DRAWING_CONTEXT;

      PEN("0000FF", 10);
      for(int i = 0; i < 30; i++)
      {
        if(lineVotes[i] > 0)
        {
          Vector2d p = getFieldInfo().fieldLinesTable.getLines()[i].begin();
          Vector2d q = getFieldInfo().fieldLinesTable.getLines()[i].end();
          Vector2d r = (p+q)*0.5;
          LINE(p.x, p.y, q.x, q.y);
          TEXT_DRAWING(r.x+60, r.y+60, lineVotes[i]);
        }
      }//end for

      // the max vote
      PEN("FF0000", 20);
      Vector2d p = getFieldInfo().fieldLinesTable.getLines()[maxIdx].begin();
      Vector2d q = getFieldInfo().fieldLinesTable.getLines()[maxIdx].end();
      //Vector2d r = (p+q)*0.5;
      LINE(p.x, p.y, q.x, q.y);
    );
    */

  }//end for

  /*
  shortestLine = shortestLine;
  DEBUG_REQUEST("MCSL:plots",
    PLOT("MonteCarloSelfLocator:shortestLine", shortestLine);
  );
  */
}//end updateByLines2018

void MonteCarloSelfLocator::updateByMiddleCircle(const Vector2d& middleCircleCenter, SampleSet& sampleSet) const
{
  double sigmaDistance = parameters.sigmaDistanceCenterCircle;
  double sigmaAngle    = parameters.sigmaAngleCenterCircle;
  double cameraHeight  = getCameraMatrix().translation.z;

  Vector2d centerCirclePosition; // (0,0)

  //TODO: this needs to be analyzed in more detail
  // Don't update angle if inside center cicle
  bool updateByAngle = !(getRobotPose().isValid || getRobotPose().translation.abs() < getFieldInfo().centerCircleRadius/2.0);

  for(size_t s=0; s < sampleSet.size(); s++)
  {
    Sample& sample = sampleSet[s];

    // translate the center circle to local coord 
    Vector2d localCircle = sample/centerCirclePosition;

    double expectedDistance = localCircle.abs();
    double expectedAngle = localCircle.angle();

    double seenDistance = middleCircleCenter.abs();
    double seenAngle = middleCircleCenter.angle();

    //double distanceDiff = fabs(expectedDistance - seenDistance);
    //double angleDiff = Math::normalize(seenAngle - expectedAngle);
    //sample.likelihood *= exp(-pow((distanceDiff)/sigmaDistance,2));
    //sample.likelihood *= exp(-pow((angleDiff)/sigmaAngle,2));

    sample.likelihood *= computeDistanceWeight(seenDistance, expectedDistance, cameraHeight, sigmaDistance);
    if (updateByAngle) {
      sample.likelihood *= computeAngleWeight(seenAngle, expectedAngle, sigmaAngle);
    }
  }//end for

}//end updateByMiddleCircle

void MonteCarloSelfLocator::updateBySidePositions(SampleSet& sampleSet) const
{
  double offserY = 0;
  Vector2d startLeft(getFieldInfo().xPosOwnPenaltyArea, getFieldInfo().yLength/2.0 - offserY);
  Vector2d endLeft(                               -500, getFieldInfo().yLength/2.0 - offserY);

  Vector2d startRight(startLeft.x, -startLeft.y);
  Vector2d endRight(endLeft.x, -endLeft.y);

  LineDensity leftStartingLine(startLeft, endLeft, -Math::pi_2, parameters.startPositionsSigmaDistance, parameters.startPositionsSigmaAngle);
  LineDensity rightStartingLine(startRight, endRight, Math::pi_2, parameters.startPositionsSigmaDistance, parameters.startPositionsSigmaAngle);

  for(size_t i = 0; i < sampleSet.size(); i++) {
    if(sampleSet[i].translation.y > 0) {
       sampleSet[i].likelihood *= leftStartingLine.update(sampleSet[i]);
    } else {
      sampleSet[i].likelihood *= rightStartingLine.update(sampleSet[i]);
    }
  }

  DEBUG_REQUEST("MCSLS:draw_state",
    FIELD_DRAWING_CONTEXT;
    leftStartingLine.draw(getDebugDrawings());
    rightStartingLine.draw(getDebugDrawings());
  );
}

void MonteCarloSelfLocator::updateByStartPositions(SampleSet& sampleSet) const
{
  double offserY = 0;
  Vector2d startLeft(getFieldInfo().xPosOwnPenaltyArea, getFieldInfo().yLength/2.0 - offserY);
  Vector2d endLeft(                               -500, getFieldInfo().yLength/2.0 - offserY);

  Vector2d startRight(startLeft.x, -startLeft.y);
  Vector2d endRight(endLeft.x, -endLeft.y);

  LineDensity leftStartingLine(startLeft, endLeft, -Math::pi_2, parameters.startPositionsSigmaDistance, parameters.startPositionsSigmaAngle);
  LineDensity rightStartingLine(startRight, endRight, Math::pi_2, parameters.startPositionsSigmaDistance, parameters.startPositionsSigmaAngle);

  /*---- HACK BEGIN ----*/
  LineDensity startingLine;
  if(getPlayerInfo().playerNumber == 1 || getPlayerInfo().playerNumber == 3 || getPlayerInfo().playerNumber == 5) {
      startingLine = leftStartingLine;
  } else {
      startingLine = rightStartingLine;
  }

  for(size_t i = 0; i < sampleSet.size(); i++) {
      sampleSet[i].likelihood *= startingLine.update(sampleSet[i]);
  }
  /*---- HACK END ----*/

  DEBUG_REQUEST("MCSLS:draw_state",
    FIELD_DRAWING_CONTEXT;
    startingLine.draw(getDebugDrawings());
  );
}

void MonteCarloSelfLocator::updateByOwnHalfLookingForward(SampleSet& sampleSet) const
{
  for(size_t s=0; s < sampleSet.size(); s++)
  {
    Sample& sample = sampleSet[s];

    if(!getFieldInfo().ownHalfRect.inside(sample.translation)) {
      sample.likelihood *= parameters.downWeightFactorOwnHalf;
    }

    double angleDiff = Math::normalize(sample.rotation - 0);
    sample.likelihood *=  Math::gaussianProbability(angleDiff, parameters.startPositionsSigmaAngle);
  }

  DEBUG_REQUEST("MCSLS:draw_state",
    FIELD_DRAWING_CONTEXT;
    PEN("ff0000", 30);
    const Vector2d& fieldMin = getFieldInfo().ownHalfRect.min();
    const Vector2d& fieldMax = getFieldInfo().ownHalfRect.max();
    BOX(fieldMin.x, fieldMin.y, fieldMax.x, fieldMax.y);
    LINE(fieldMin.x, fieldMin.y, fieldMax.x, fieldMax.y);
    LINE(fieldMin.x, fieldMax.y, fieldMax.x, fieldMin.y);
  );
}

void MonteCarloSelfLocator::updateByOwnHalf(SampleSet& sampleSet) const
{
  for(size_t s=0; s < sampleSet.size(); s++)
  {
    Sample& sample = sampleSet[s];

    if(!getFieldInfo().ownHalfRect.inside(sample.translation)) {
      sample.likelihood *= parameters.downWeightFactorOwnHalf;
    }
  }

  DEBUG_REQUEST("MCSLS:draw_state",
    FIELD_DRAWING_CONTEXT;
    PEN("000000", 30);
    const Vector2d& fieldMin = getFieldInfo().ownHalfRect.min();
    const Vector2d& fieldMax = getFieldInfo().ownHalfRect.max();
    BOX(fieldMin.x, fieldMin.y, fieldMax.x, fieldMax.y);
    LINE(fieldMin.x, fieldMin.y, fieldMax.x, fieldMax.y);
    LINE(fieldMin.x, fieldMax.y, fieldMax.x, fieldMin.y);
  );
}

void MonteCarloSelfLocator::updateByOppHalf(SampleSet& sampleSet) const
{
  for(size_t s=0; s < sampleSet.size(); s++)
  {
    Sample& sample = sampleSet[s];

    if(!getFieldInfo().oppHalfRect.inside(sample.translation)) {
      sample.likelihood *= parameters.downWeightFactorOwnHalf;
    }
  }

  DEBUG_REQUEST("MCSLS:draw_state",
    FIELD_DRAWING_CONTEXT;
    PEN("000000", 30);
    const Vector2d& fieldMin = getFieldInfo().oppHalfRect.min();
    const Vector2d& fieldMax = getFieldInfo().oppHalfRect.max();
    BOX(fieldMin.x, fieldMin.y, fieldMax.x, fieldMax.y);
    LINE(fieldMin.x, fieldMin.y, fieldMax.x, fieldMax.y);
    LINE(fieldMin.x, fieldMax.y, fieldMax.x, fieldMin.y);
  );
}

void MonteCarloSelfLocator::updateByGoalBox(SampleSet& sampleSet) const
{
  static const Geometry::Rect2d ownGoalBox(
    Vector2d(getFieldInfo().xPosOwnGroundline, getFieldInfo().yPosRightPenaltyArea) - Vector2d(200, 200), 
    Vector2d(getFieldInfo().xPosOwnPenaltyArea, getFieldInfo().yPosLeftPenaltyArea) + Vector2d(200, 200));

  for(size_t s=0; s < sampleSet.size(); s++)
  {
    Sample& sample = sampleSet[s];

    if(!ownGoalBox.inside(sample.translation)) {
      sample.likelihood *= parameters.downWeightFactorOwnHalf;
    }

    double angleDiff = Math::normalize(sample.rotation - 0);
    sample.likelihood *=  Math::gaussianProbability(angleDiff, parameters.startPositionsSigmaAngle);
  }

  DEBUG_REQUEST("MCSLS:draw_state",
    FIELD_DRAWING_CONTEXT;
    PEN("000000", 30);
    const Vector2d& fieldMin = ownGoalBox.min();
    const Vector2d& fieldMax = ownGoalBox.max();
    BOX(fieldMin.x, fieldMin.y, fieldMax.x, fieldMax.y);
    LINE(fieldMin.x, fieldMin.y, fieldMax.x, fieldMax.y);
    LINE(fieldMin.x, fieldMax.y, fieldMax.x, fieldMin.y);
  );
}


void MonteCarloSelfLocator::updateByOldPose(SampleSet& sampleSet) const
{     
  double sigmaDistance = parameters.oldPoseSigmaDistance;
  double sigmaAngle = parameters.oldPoseSigmaAngle;

  updateByPose(sampleSet, getRobotPose(), sigmaDistance, sigmaAngle);
}

/*
void MonteCarloSelfLocator::updateByGoalModel(SampleSet& sampleSet) const
{
  double sigmaDistance = parameters.sigmaDistanceGoalModel;
  double sigmaAngle = parameters.sigmaAngleGoalModel;

  Pose2D pose = getSensingGoalModel().calculatePose(getCompassDirection(), getFieldInfo());

  updateByPose(sampleSet, pose, sigmaDistance, sigmaAngle);
}//end updateByGoalModel
*/

void MonteCarloSelfLocator::updateByPose(SampleSet& sampleSet, Pose2D pose, double sigmaDistance, double sigmaAngle) const
{
  for (size_t j = 0; j < sampleSet.size(); j++)
  {   
    double angleDiff = Math::normalize(sampleSet[j].rotation - pose.rotation);
    sampleSet[j].likelihood *= Math::gaussianProbability(angleDiff, sigmaAngle);

    double distDif = (sampleSet[j].translation - pose.translation).abs();
    sampleSet[j].likelihood *= Math::gaussianProbability(distDif, sigmaDistance); 
  }
}


void MonteCarloSelfLocator::updateStatistics(SampleSet& sampleSet)
{
  double cross_entropy = 0.0;
  double avg = 0.0;
  for (size_t i = 0; i < sampleSet.size(); i++) {
    avg += sampleSet[i].likelihood;
    cross_entropy -= log(sampleSet[i].likelihood);
  }
  avg /= (double)sampleSet.size();
  cross_entropy /= (double)sampleSet.size();<--- Variable 'cross_entropy' is assigned a value that is never used.
  PLOT("MonteCarloSelfLocator:w_average",avg);
  PLOT("MonteCarloSelfLocator:cross_entropy",avg);

  sampleSet.normalize();

  // effective number of particles
  static RingBufferWithSum<double, 30>  effective_number_of_samples_buffer;
  double sum2 = 0.0;
  for (size_t i = 0; i < sampleSet.size(); i++) {
    sum2 += Math::sqr(sampleSet[i].likelihood);
  }
  effective_number_of_samples = 1.0/sum2;
  effective_number_of_samples_buffer.add(effective_number_of_samples);
  PLOT("effective_number_of_samples", effective_number_of_samples);
  PLOT("effective_number_of_samples_buffer", effective_number_of_samples_buffer.getAverage());

  //1.0f - fastWeighting / slowWeighting
  double alphaSlow = 0.0059; //0.0059 0.006
  double alphaFast = 0.006;
  MODIFY("alphaSlow", alphaSlow);
  MODIFY("alphaFast", alphaFast);
  slowWeighting = slowWeighting + alphaSlow * (avg - slowWeighting);
  fastWeighting = fastWeighting + alphaFast * (avg - fastWeighting);
  PLOT("slowWeighting", slowWeighting);
  PLOT("fastWeighting", fastWeighting);

  const double resamplingPercentage = std::max(0.0, 1.0 - fastWeighting / slowWeighting);
  //const double numberOfResampledSamples = theSampleSet.size() * (1.0 - resamplingPercentage);
  PLOT("resamplingPercentage", resamplingPercentage);
}


void MonteCarloSelfLocator::resampleSimple(SampleSet& sampleSet, int number) const
{
  sampleSet.normalize();
  sampleSet.sort(false); // sort in the asscending order - worst are first ;)

  /*
  struct COMP {
    const SampleSet& sampleSet;

    COMP(const SampleSet& sampleSet) : 
      sampleSet(sampleSet) {
    }

    bool operator() (int i, int j) { 
      return sampleSet[i].likelihood < sampleSet[j].likelihood;
    }
  };

  std::vector<int> idx(sampleSet.size());
  for(size_t i = 0; i < idx.size(); i++) {
    idx[i] = i;
  }
  std::sort(idx.begin(), idx.end(), COMP(sampleSet));
  */

  double threshold = 1.0/(double)sampleSet.size();

  int k = 0;
  for(size_t i = 0; i < sampleSet.size() && i < 10; i++) {
    if(sampleSet[i].likelihood < threshold && k + number < (int)sampleSet.size()) {
      createRandomSample(getFieldInfo().carpetRect, sampleSet[i]); 
      k++;
    }
  }
}

//Metropolis Hastings
void MonteCarloSelfLocator::resampleMH(SampleSet& sampleSet)
{
  if(mhBackendSet.size() != sampleSet.size()) {
    mhBackendSet = sampleSet;
  }

  double radius = 200;
  MODIFY("resampleMH:radius", radius);

  double angle = 0.2;
  MODIFY("resampleMH:angle", angle);

  double threshold = 1.0/(double)sampleSet.size();
  MODIFY("resampleMH:threshold", threshold);

  double alpha = 0.1;
  MODIFY("resampleMH:alpha", alpha);

  sampleSet.normalize();
  //mhBackendSet.normalize();

  double backendSum = 0;

  for(size_t j = 0; j < mhBackendSet.size(); j++) 
  {
    // manage the backend set
    if(sampleSet[j].likelihood > mhBackendSet[j].likelihood) {
      mhBackendSet[j] = sampleSet[j]; // accept
    } else {
      mhBackendSet[j].likelihood = (1.0 - alpha)*mhBackendSet[j].likelihood + alpha*sampleSet[j].likelihood; // aging
      sampleSet[j] = mhBackendSet[j]; // reject
    }

    backendSum += mhBackendSet[j].likelihood;

    if(sampleSet[j].likelihood < threshold) { // new rendom particle
      createRandomSample(parameters.resetOwnHalf ? getFieldInfo().ownHalfRect : getFieldInfo().carpetRect, sampleSet[j]);
    } else { // just apply some noise
      applySimpleNoise(sampleSet[j], radius, angle);
    }
  }


  SampleSet oldSampleSet = sampleSet;
  oldSampleSet.normalize(parameters.resamplingThreshhold);

  double likelihood_step = 1.0/100.0; // the step in the weighting so we get exactly n particles
  double targetSum = Math::random()*likelihood_step;
  double currentSum = 0;

  // Stochastic universal sampling
  // i - count over the old sample set
  // j - over the new one :)
  size_t j = 0;
  for(size_t i = 0; i < oldSampleSet.size(); i++)
  {
    currentSum += oldSampleSet[i].likelihood;

    // select the particle to copy
    while(targetSum < currentSum && j < oldSampleSet.size())
    {
      sampleSet[j] = oldSampleSet[i];
      applySimpleNoise(sampleSet[j], radius, angle);
      targetSum += likelihood_step;
      j++;
    }
  }
}

int MonteCarloSelfLocator::resampleSUS(SampleSet& sampleSet, int n) const
{
  SampleSet oldSampleSet = sampleSet;
  oldSampleSet.normalize(parameters.resamplingThreshhold);

  //int n = 100; // number of samples to copy
  double likelihood_step = 1.0/n; // the step in the weighting so we get exactly n particles
  
  double targetSum = Math::random()*likelihood_step;
  double currentSum = 0;

  // Stochastic universal sampling
  // i - count over the old sample set
  // j - over the new one :)
  size_t j = 0;
  for(size_t i = 0; i < oldSampleSet.size(); i++)
  {
    currentSum += oldSampleSet[i].likelihood;

    // select the particle to copy
    while(targetSum < currentSum && j < oldSampleSet.size())
    {
      sampleSet[j] = oldSampleSet[i];
      targetSum += likelihood_step;

      if(updatedByGoalPosts) {
        applySimpleNoise(sampleSet[j], parameters.processNoiseDistance, parameters.processNoiseAngle);
      } else {
        applySimpleNoise(sampleSet[j], 0.0, parameters.processNoiseAngle);
      }

      j++;
    }
  }

  return (int)j;
}

void MonteCarloSelfLocator::resampleGT07(SampleSet& sampleSet, bool noise) const
{
  int numberOfPartiklesToResample = 0;

  SampleSet oldSampleSet = sampleSet;
  oldSampleSet.normalize(parameters.resamplingThreshhold);
  
  //oldSampleSet.sort();

  double sum = -Math::random();
  size_t count = 0;

  size_t m = 0;  // Zaehler durchs Ausgangs-Set
  size_t n = 0;  // Zaehler durchs Ziel-Set

  for(m = 0; m < sampleSet.size(); m++)
  {
    sum += oldSampleSet[m].likelihood * (double)oldSampleSet.size();

    // select the particle to copy
    while(static_cast<double>(count) < sum && count < oldSampleSet.size())
    {
      if (n >= oldSampleSet.size() - numberOfPartiklesToResample) break;
      
      // copy the selected particle
      sampleSet[n] = oldSampleSet[m];
      if(noise && updatedByGoalPosts) {
        applySimpleNoise(sampleSet[n], parameters.processNoiseDistance, parameters.processNoiseAngle);
      } else {
        applySimpleNoise(sampleSet[n], 0.0, parameters.processNoiseAngle);
      }
      
      n++;
      count++;
    }//end while

    if (n >= oldSampleSet.size()-numberOfPartiklesToResample) break;
  }//end for

  // fill up by copying random samples (shouldn't happen)
  while (n < sampleSet.size()) 
  {
    int i = Math::random((int)sampleSet.size());
    sampleSet[n++] = sampleSet[i];
  }
}


int MonteCarloSelfLocator::sensorResetBySensingGoalModel(SampleSet& sampleSet, int n) const
{
  // sensor resetting by whole goal
  if(!getSensingGoalModel().someGoalWasSeen)
//     !getSensingGoalModel().horizonScan ||
//     getSensingGoalModel().goal.calculateCenter().angle() > Math::fromDegrees(60)) // needed when th distortion is high
  {
    return n;
  }
    
  Pose2D pose = getSensingGoalModel().calculatePose(sampleSet[0].rotation, getFieldInfo());

  if(getFieldInfo().carpetRect.inside(pose.translation))
  {
    sampleSet[n].translation = pose.translation;
    sampleSet[n].rotation = pose.rotation;
    n++;

    DEBUG_REQUEST("MCSLS:draw_sensorResetBySensingGoalModel",
      FIELD_DRAWING_CONTEXT;
      PEN("0000FF", 20);
      ARROW(pose.translation.x, pose.translation.y, 
            pose.translation.x + 100*cos(pose.rotation), 
            pose.translation.y + 100*sin(pose.rotation));
    );
  } else {
    Pose2D poseMirrored(pose);
    poseMirrored.translation *= -1;
    poseMirrored.rotate(Math::pi);

    // HACK: try the mirrored pose
    if(getFieldInfo().carpetRect.inside(poseMirrored.translation))
    {
      sampleSet[n].translation = pose.translation;
      sampleSet[n].rotation = pose.rotation;
      n++;

      DEBUG_REQUEST("MCSLS:draw_sensorResetBySensingGoalModel",
        FIELD_DRAWING_CONTEXT;
        PEN("FF0000", 20);
        ARROW(poseMirrored.translation.x, poseMirrored.translation.y, 
              poseMirrored.translation.x + 100*cos(poseMirrored.rotation), 
              poseMirrored.translation.y + 100*sin(poseMirrored.rotation));
      );
    }
  }

  return n;
}//end sensorResetBySensingGoalModel


void MonteCarloSelfLocator::sensorResetByMiddleCircle(SampleSet& sampleSet) const
{
  if(!getLinePerceptAugmented().middleCircleOrientationWasSeen) {
    return;
  }
  
  const Vector2d direction = getLinePerceptAugmented().centerLine.getDirection();
  const Vector2d& center = getLinePerceptAugmented().middleCircleCenter;

  Pose2D centerLeft  = Pose2D(Vector2d(direction).rotateLeft().angle(), center).invert();
  Pose2D centerRight = Pose2D(Vector2d(direction).rotateRight().angle(), center).invert();
  
  DEBUG_REQUEST("MCSLS:draw_sensorResetByMiddleCircle",
    FIELD_DRAWING_CONTEXT;
    PEN("FF9999", 20);

    ROBOT(centerLeft.translation.x,
          centerLeft.translation.y,
          centerLeft.rotation);

    PEN("9999FF", 20);

    ROBOT(centerRight.translation.x,
          centerRight.translation.y,
          centerRight.rotation);
  );

  if(getRobotPose().isValid) 
  {
    size_t n = sampleSet.size()-1;

    if( 
      parameters.sensorResetByMiddleCircleAngleDecisionDistance > 0 && 
      getRobotPose().translation.abs2() < Math::sqr(parameters.sensorResetByMiddleCircleAngleDecisionDistance) )
    {
      // choose one by the rotation
      if(fabs(Math::normalize(centerLeft.rotation - getRobotPose().rotation)) < fabs(Math::normalize(centerRight.rotation - getRobotPose().rotation))) {
        sampleSet[n] = centerLeft;
      } else {
        sampleSet[n] = centerRight;
      }
    } else {
      // choose one by the distance
      if((centerLeft.translation - getRobotPose().translation).abs2() < (centerRight.translation - getRobotPose().translation).abs2()) {
        sampleSet[n] = centerLeft;
      } else {
        sampleSet[n] = centerRight;
      }
    }
  } 
  else 
  {
    size_t n = sampleSet.size()-1;
    sampleSet[n-1] = centerLeft;
    sampleSet[n] = centerRight;
  }
}


void MonteCarloSelfLocator::calculatePose(SampleSet& sampleSet)
{
  /************************************
   * STEP V: clustering
   ************************************/

  // try to track the hypothesis
  int clusterSize = canopyClustering.cluster(sampleSet, getRobotPose().translation);
  
  // Hypothesis tracking:
  // the idea is to keep the cluster until it has at lest 1/3 of all particles
  // if not, then jump only if there is anoter cluster having more then 2/3 particles

  // if the hypothesis is to small...
  if(clusterSize < 0.3*(double)sampleSet.size())
  {
    // make new cluseter
    canopyClustering.cluster(sampleSet);

    // find the largest cluster
    Moments2<2> tmpMoments;
    //Sample tmpPose = sampleSet.meanOfLargestCluster(tmpMoments);
    Sample tmpPose = sampleSet.meanOfCluster(tmpMoments, canopyClustering.getLargestClusterID());

    // TODO: make it more efficient
    // if it is not suficiently bigger revert the old clustering
    if(tmpMoments.getRawMoment(0,0) < 0.6*(double)sampleSet.size()) {
      canopyClustering.cluster(sampleSet, getRobotPose().translation);
    } else { // jump => change the state
      //state = LOCALIZE;
    }
  }//end if

  /************************************
   * STEP VI: estimate new position and update the model
   ************************************/

  // estimate the deviation of the pose
  Moments2<2> moments;
  //Sample newPose = sampleSet.meanOfLargestCluster(moments);
  Sample newPose = sampleSet.meanOfCluster(moments, canopyClustering.getLargestClusterID());

  getRobotPose() = newPose;

  moments.getAxes(
    getRobotPose().principleAxisMajor, 
    getRobotPose().principleAxisMinor);

  // TODO: find a beter place for it
  getRobotPose().isValid = (state == TRACKING);

  // update the goal model based on the robot pose
  getSelfLocGoalModel().update(getRobotPose(), getFieldInfo());

  DEBUG_REQUEST("MCSLS:draw_Cluster",
    FIELD_DRAWING_CONTEXT;
    sampleSet.drawCluster(getDebugDrawings(), newPose.cluster);
  );

  DEBUG_REQUEST("MCSLS:draw_position",
    drawPosition();
  );
}//end calculate pose


void MonteCarloSelfLocator::drawPosition() const
{
  FIELD_DRAWING_CONTEXT;
  if(getRobotPose().isValid)
  {
    switch( getPlayerInfo().teamColor )
    {
    case GameData::red:    PEN("FF0000", 20); break;
    case GameData::blue:   PEN("0000FF", 20); break;
    case GameData::yellow: PEN("FFFF00", 20); break;
    case GameData::black:  PEN("000000", 20); break;
    default: PEN("AAAAAA", 20); break;
    }
  }
  else
  {
    PEN("AAAAAA", 20);
  }

  ROBOT(getRobotPose().translation.x,
        getRobotPose().translation.y,
        getRobotPose().rotation);


  DEBUG_REQUEST("MCSLS:draw_deviation",
    PEN("000000", 20);

    LINE(getRobotPose().translation.x - getRobotPose().principleAxisMajor.x, 
         getRobotPose().translation.y - getRobotPose().principleAxisMajor.y,
         getRobotPose().translation.x + getRobotPose().principleAxisMajor.x, 
         getRobotPose().translation.y + getRobotPose().principleAxisMajor.y);

    LINE(getRobotPose().translation.x - getRobotPose().principleAxisMinor.x, 
         getRobotPose().translation.y - getRobotPose().principleAxisMinor.y,
         getRobotPose().translation.x + getRobotPose().principleAxisMinor.x, 
         getRobotPose().translation.y + getRobotPose().principleAxisMinor.y);

    OVAL_ROTATED(getRobotPose().translation.x, 
                 getRobotPose().translation.y, 
                 getRobotPose().principleAxisMinor.abs()*2.0,
                 getRobotPose().principleAxisMajor.abs()*2.0,
                 getRobotPose().principleAxisMinor.angle());
  );
}//end drawPosition

void MonteCarloSelfLocator::draw_sensor_belief() const
{
  static const int ySize = 20;
  static const int xSize = 30;
  double yWidth = 0.5*getFieldInfo().yFieldLength/(double)ySize;
  double xWidth = 0.5*getFieldInfo().xFieldLength/(double)xSize;

  FIELD_DRAWING_CONTEXT;
  Color white(1.0,1.0,1.0,0.0); // transparent
  Color black(0.0,0.0,0.0,1.0);

  double fixedRotation = theSampleSet.getMostLikelySample().rotation;

  // create new sample set
  SampleSet sampleSet(xSize*ySize);
  int idx = 0;

  for (int x = 0; x < xSize; x++) {
    for (int y = 0; y < ySize; y++)
    {
      Vector2d point(xWidth*(2*x-xSize+1), yWidth*(2*y-ySize+1));
      sampleSet[idx].translation = point;
      sampleSet[idx].rotation = fixedRotation;
      sampleSet[idx].likelihood = 1.0;
      idx++;
    }
  }

  updateBySensors(sampleSet);
  
  double maxValue = 0;
  idx = 0;
  for (int x = 0; x < xSize; x++) {
    for (int y = 0; y < ySize; y++)
    {
      maxValue = max(maxValue, sampleSet[idx++].likelihood);
    }
  }

  if(maxValue == 0) return;

  idx = 0;
  for (int x = 0; x < xSize; x++) {
    for (int y = 0; y < ySize; y++)
    {
      Vector2d point(xWidth*(2*x-xSize+1), yWidth*(2*y-ySize+1));
      
      double t = sampleSet[idx++].likelihood / maxValue;
      Color color = black*t + white*(1-t);
      PEN(color, 20);
      FILLBOX(point.x - xWidth, point.y - yWidth, point.x+xWidth, point.y+yWidth);
    }
  }
}//end draw_closest_points