tixcraft_bot/webdriver/Maxbotplus_1.0.0/js/common.js

40 lines
1.4 KiB
JavaScript
Raw Normal View History

function get_target_area_with_order(settings, matched_block)
{
//console.log(settings);
2024-02-07 08:30:17 +00:00
let target_area = null;
2024-02-07 08:30:17 +00:00
if(matched_block.length) {
let last_index = matched_block.length-1
let center_index = parseInt(last_index/2);
if(settings.area_auto_select.mode=="from top to bottom")
target_area = matched_block[0];
if(settings.area_auto_select.mode=="from bottom to top")
target_area = matched_block[last_index];
if(settings.area_auto_select.mode=="center")
target_area = matched_block[center_index];
if(settings.area_auto_select.mode=="random")
target_area = matched_block[0];
}
return target_area;
}
function get_target_date_with_order(settings, matched_block)
{
//console.log(settings);
2024-02-07 08:30:17 +00:00
let target_area = null;
2024-02-07 08:30:17 +00:00
if(matched_block.length) {
let last_index = matched_block.length-1
let center_index = parseInt(last_index/2);
if(settings.date_auto_select.mode=="from top to bottom")
target_area = matched_block[0];
if(settings.date_auto_select.mode=="from bottom to top")
target_area = matched_block[last_index];
if(settings.date_auto_select.mode=="center")
target_area = matched_block[center_index];
if(settings.date_auto_select.mode=="random")
target_area = matched_block[0];
}
return target_area;
2024-01-06 17:44:06 +00:00
}