diff --git a/Mourne-CI/.gitignore b/Mourne-CI/.gitignore new file mode 100755 index 0000000..9783dcf --- /dev/null +++ b/Mourne-CI/.gitignore @@ -0,0 +1,16 @@ +*~ +4 +*.swp +*.swo +*.swn +*.swl +*.sw* +#*# +*#* +.#* +log-*.php +log_*.txt +log.txt +debug_*.sql +map*.sql +ai_village*.sql diff --git a/Mourne-CI/application/.htaccess b/Mourne-CI/application/.htaccess new file mode 100755 index 0000000..14249c5 --- /dev/null +++ b/Mourne-CI/application/.htaccess @@ -0,0 +1 @@ +Deny from all \ No newline at end of file diff --git a/Mourne-CI/application/controllers/admin.php b/Mourne-CI/application/controllers/admin.php new file mode 100755 index 0000000..c06e3c7 --- /dev/null +++ b/Mourne-CI/application/controllers/admin.php @@ -0,0 +1,1935 @@ +userlevel < 5) show_404(); + + $this->headers('admin'); + $this->load->view('admin/panel.php'); + $this->footer(); + } + + function building_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('building_model'); + + $data['buildings'] = $this->building_model->list_buildings_admin(); + + $this->headers('admin'); + $this->load->view('admin/building_tool/list.php', $data); + $this->footer(); + } + + function building($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('building_model'); + $this->load->model('unit_model'); + $this->load->model('assignment_model'); + $this->load->model('technology_model'); + + $this->form_validation->set_rules('name', 'Name', 'required'); + $this->form_validation->set_rules('description', 'Description', 'alphanumeric'); + $this->form_validation->set_rules('icon', 'Icon', 'required'); + $this->form_validation->set_rules('rank', 'Rank', 'integer'); + $data['nextr'] = $this->input->post('next_rank'); //has to be done like this :( + $data['optnr'] = $this->building_model->get_building_ranks_admin(); + + $this->form_validation->set_rules('time_to_build', 'Time to Build', 'integer'); + + //creates + $data['screate'] = $this->input->post('creates'); + $data['optcre'] = $this->unit_model->get_unit_list_dropdown_admin(); + + $this->form_validation->set_rules('num_creates', 'Num Creates', 'integer'); + + $this->form_validation->set_rules('score', 'Score', 'integer'); + $this->form_validation->set_rules('defense', 'Defense', 'integer'); + + $data['sability'] = $this->input->post('ability'); + + $this->form_validation->set_rules('cost_food', 'cost_food', 'integer'); + $this->form_validation->set_rules('cost_wood', 'cost_wood', 'integer'); + $this->form_validation->set_rules('cost_stone', 'cost_stone', 'integer'); + $this->form_validation->set_rules('cost_iron', 'cost_iron', 'integer'); + $this->form_validation->set_rules('cost_mana', 'cost_mana', 'integer'); + + $this->form_validation->set_rules('mod_max_food', 'Mod Max Food', 'integer'); + $this->form_validation->set_rules('mod_max_wood', 'Mod Max Wood', 'integer'); + $this->form_validation->set_rules('mod_max_stone', 'Mod Max Stone', 'integer'); + $this->form_validation->set_rules('mod_max_iron', 'Mod Max Iron', 'integer'); + $this->form_validation->set_rules('mod_max_mana', 'Mod Max Mana', 'integer'); + + $this->form_validation->set_rules('mod_rate_food', 'Mod Rate Food', 'numeric'); + $this->form_validation->set_rules('mod_rate_wood', 'Mod Rate Wood', 'numeric'); + $this->form_validation->set_rules('mod_rate_stone', 'Mod Rate Stone', 'numeric'); + $this->form_validation->set_rules('mod_rate_iron', 'Mod Rate Iron', 'numeric'); + $this->form_validation->set_rules('mod_rate_mana', 'Mod Rate Mana', 'numeric'); + + $this->form_validation->set_rules('mod_percent_food', 'Mod Percent Food', 'integer'); + $this->form_validation->set_rules('mod_percent_wood', 'Mod Percent Wood', 'integer'); + $this->form_validation->set_rules('mod_percent_stone', 'Mod Percent Stone', 'integer'); + $this->form_validation->set_rules('mod_percent_iron', 'Mod Percent Iron', 'integer'); + $this->form_validation->set_rules('mod_percent_mana', 'Mod Percent Mana', 'integer'); + + //assignments + $data['optass'] = $this->assignment_model->get_assignment_list_drop_admin(); + $data['assign1'] = $this->input->post('assign1'); + $data['assign2'] = $this->input->post('assign2'); + $data['assign3'] = $this->input->post('assign3'); + $data['assign4'] = $this->input->post('assign4'); + $data['assign5'] = $this->input->post('assign5'); + + $data['optreqtech'] = $this->technology_model->get_tech_list_drop_admin(); + $data['selreqtech'] = $this->input->post('req_tech'); + + $data['opttechgroup'] = $this->technology_model->get_tech_group_list_drop_admin(); + + $data['seltechgroup'] = $this->input->post('tech_group'); + $data['seltechsecgroup'] = $this->input->post('tech_secondary_group'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/building_tool/building', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['building'] = $this->building_model->get_building_admin($id); + + $this->load->view('admin/building_tool/building', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['name'] = $this->input->post('name'); + $data['description'] = $this->input->post('description'); + $data['icon'] = $this->input->post('icon'); + $data['rank'] = $this->input->post('rank'); + $data['next_rank'] = $this->input->post('next_rank'); + $data['time_to_build'] = $this->input->post('time_to_build'); + + $data['creates'] = $this->input->post('creates'); + $data['num_creates'] = $this->input->post('num_creates'); + + $data['score'] = $this->input->post('score'); + $data['defense'] = $this->input->post('defense'); + $data['ability'] = $this->input->post('ability'); + + $data['cost_food'] = $this->input->post('cost_food'); + $data['cost_wood'] = $this->input->post('cost_wood'); + $data['cost_stone'] = $this->input->post('cost_stone'); + $data['cost_iron'] = $this->input->post('cost_iron'); + $data['cost_mana'] = $this->input->post('cost_mana'); + + $data['mod_max_food'] = $this->input->post('mod_max_food'); + $data['mod_max_wood'] = $this->input->post('mod_max_wood'); + $data['mod_max_stone'] = $this->input->post('mod_max_stone'); + $data['mod_max_iron'] = $this->input->post('mod_max_iron'); + $data['mod_max_mana'] = $this->input->post('mod_max_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $data['mod_percent_food'] = $this->input->post('mod_percent_food'); + $data['mod_percent_wood'] = $this->input->post('mod_percent_wood'); + $data['mod_percent_stone'] = $this->input->post('mod_percent_stone'); + $data['mod_percent_iron'] = $this->input->post('mod_percent_iron'); + $data['mod_percent_mana'] = $this->input->post('mod_percent_mana'); + + $data['assignment1'] = $this->input->post('assign1'); + $data['assignment2'] = $this->input->post('assign2'); + $data['assignment3'] = $this->input->post('assign3'); + $data['assignment4'] = $this->input->post('assign4'); + $data['assignment5'] = $this->input->post('assign5'); + + $data['req_tech'] = $this->input->post('req_tech'); + + $data['tech_group'] = $this->input->post('tech_group'); + $data['tech_secondary_group'] = $this->input->post('tech_secondary_group'); + + $this->load->model('building_model'); + + if ($id == -1) + { + //making new + $this->building_model->add_building_admin($data); + } + else + { + //editing + $this->building_model->edit_building_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/building_tool'); + } + } + +//unit tool + function unit_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('unit_model'); + + $data['units'] = $this->unit_model->list_units_admin(); + + $this->headers('admin'); + $this->load->view('admin/unit_tool/list.php', $data); + $this->footer(); + } + + function unit($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('unit_model'); + $this->load->model('ai_model'); + + $this->form_validation->set_rules('name', 'Name', 'required'); + $this->form_validation->set_rules('icon', 'Icon', 'required'); + $this->form_validation->set_rules('type', 'Type', 'integer'); + + $this->form_validation->set_rules('score', 'Score', 'integer'); + + $data['scd'] = $this->input->post('can_defend'); + + $this->form_validation->set_rules('defense', 'Type', 'numeric'); + $this->form_validation->set_rules('attack', 'Type', 'numeric'); + + $data['sstrong'] = $this->input->post('strong_against'); + $data['sweak'] = $this->input->post('weak_against'); + + $data['optaiu'] = $this->ai_model->get_unit_list_drop_admin(); + + $this->form_validation->set_rules('turn', 'Turn', 'integer'); + $this->form_validation->set_rules('ability', 'Ability', 'integer'); + + $this->form_validation->set_rules('time_to_create', 'Time to Create', 'integer'); + + $data['costu'] = $this->input->post('cost_unit'); //has to be done like this :( + $data['optu'] = $this->unit_model->get_unit_list_dropdown_admin(); + + $this->form_validation->set_rules('cost_num_unit', 'Cost Number of Units', 'integer'); + + $this->form_validation->set_rules('cost_food', 'cost_food', 'integer'); + $this->form_validation->set_rules('cost_wood', 'cost_wood', 'integer'); + $this->form_validation->set_rules('cost_stone', 'cost_stone', 'integer'); + $this->form_validation->set_rules('cost_iron', 'cost_iron', 'integer'); + $this->form_validation->set_rules('cost_mana', 'cost_mana', 'integer'); + + $this->form_validation->set_rules('mod_rate_food', 'Mod Rate Food', 'numeric'); + $this->form_validation->set_rules('mod_rate_wood', 'Mod Rate Wood', 'numeric'); + $this->form_validation->set_rules('mod_rate_stone', 'Mod Rate Stone', 'numeric'); + $this->form_validation->set_rules('mod_rate_iron', 'Mod Rate Iron', 'numeric'); + $this->form_validation->set_rules('mod_rate_mana', 'Mod Rate Mana', 'numeric'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/unit_tool/unit', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['unit'] = $this->unit_model->get_unit_admin($id); + + $this->load->view('admin/unit_tool/unit', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['type'] = $this->input->post('type'); + $data['name'] = $this->input->post('name'); + $data['icon'] = $this->input->post('icon'); + $data['score'] = $this->input->post('score'); + + $data['can_defend'] = $this->input->post('can_defend'); + $data['defense'] = $this->input->post('defense'); + $data['attack'] = $this->input->post('attack'); + $data['weak_against'] = $this->input->post('weak_against'); + $data['strong_against'] = $this->input->post('strong_against'); + $data['turn'] = $this->input->post('turn'); + $data['ability'] = $this->input->post('ability'); + + $data['time_to_create'] = $this->input->post('time_to_create'); + + $data['cost_unit'] = $this->input->post('cost_unit'); + $data['cost_num_unit'] = $this->input->post('cost_num_unit'); + + $data['cost_food'] = $this->input->post('cost_food'); + $data['cost_wood'] = $this->input->post('cost_wood'); + $data['cost_stone'] = $this->input->post('cost_stone'); + $data['cost_iron'] = $this->input->post('cost_iron'); + $data['cost_mana'] = $this->input->post('cost_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $this->load->model('unit_model'); + + if ($id == -1) + { + //making new + $this->unit_model->add_unit_admin($data); + } + else + { + //editing + $this->unit_model->edit_unit_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/unit_tool'); + } + } + +//assignment tool + function assignment_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('assignment_model'); + + $data['assignments'] = $this->assignment_model->get_assignments_admin(); + + $this->headers('admin'); + $this->load->view('admin/assignment_tool/list.php', $data); + $this->footer(); + } + + function assignment($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('assignment_model'); + $this->load->model('unit_model'); + $this->load->model('spell_model'); + $this->load->model('technology_model'); + + //assign + $data['sassign'] = $this->input->post('unitid'); + $data['optass'] = $this->unit_model->get_unit_list_dropdown_admin(); + + $this->form_validation->set_rules('max', 'Max Assign', 'is_natural|required'); + $this->form_validation->set_rules('bonus_per_assigned', 'Assigned/bonus', + 'integer'); + + $data['ssp'] = $this->input->post('spellid'); + $data['optsp'] = $this->spell_model->get_spell_list_drop_admin(); + + $data['srtech'] = $this->input->post('req_tech'); + $data['optrtech'] = $this->technology_model->get_tech_list_drop_admin(); + + $this->form_validation->set_rules('mod_max_food', 'Mod Max Food', 'integer'); + $this->form_validation->set_rules('mod_max_wood', 'Mod Max Wood', 'integer'); + $this->form_validation->set_rules('mod_max_stone', 'Mod Max Stone', 'integer'); + $this->form_validation->set_rules('mod_max_iron', 'Mod Max Iron', 'integer'); + $this->form_validation->set_rules('mod_max_mana', 'Mod Max Mana', 'integer'); + + $this->form_validation->set_rules('mod_rate_food', 'Mod Rate Food', 'numeric'); + $this->form_validation->set_rules('mod_rate_wood', 'Mod Rate Wood', 'numeric'); + $this->form_validation->set_rules('mod_rate_stone', 'Mod Rate Stone', 'numeric'); + $this->form_validation->set_rules('mod_rate_iron', 'Mod Rate Iron', 'numeric'); + $this->form_validation->set_rules('mod_rate_mana', 'Mod Rate Mana', 'numeric'); + + $this->form_validation->set_rules('mod_percent_food', 'Mod Percent Food', 'numeric'); + $this->form_validation->set_rules('mod_percent_wood', 'Mod Percent Wood', 'numeric'); + $this->form_validation->set_rules('mod_percent_stone', 'Mod Percent Stone', 'numeric'); + $this->form_validation->set_rules('mod_percent_iron', 'Mod Percent Iron', 'numeric'); + $this->form_validation->set_rules('mod_percent_mana', 'Mod Percent Mana', 'numeric'); + + $this->form_validation->set_rules('description', 'Description', 'alphanumeric'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/assignment_tool/assignment', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['assignment'] = $this->assignment_model->get_assignment_admin($id); + + $this->load->view('admin/assignment_tool/assignment', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['unitid'] = $this->input->post('unitid'); + $data['max'] = $this->input->post('max'); + $data['bonus_per_assigned'] = $this->input->post('bonus_per_assigned'); + $data['spellid'] = $this->input->post('spellid'); + $data['req_tech'] = $this->input->post('req_tech'); + + $data['mod_max_food'] = $this->input->post('mod_max_food'); + $data['mod_max_wood'] = $this->input->post('mod_max_wood'); + $data['mod_max_stone'] = $this->input->post('mod_max_stone'); + $data['mod_max_iron'] = $this->input->post('mod_max_iron'); + $data['mod_max_mana'] = $this->input->post('mod_max_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $data['mod_percent_food'] = $this->input->post('mod_percent_food'); + $data['mod_percent_wood'] = $this->input->post('mod_percent_wood'); + $data['mod_percent_stone'] = $this->input->post('mod_percent_stone'); + $data['mod_percent_iron'] = $this->input->post('mod_percent_iron'); + $data['mod_percent_mana'] = $this->input->post('mod_percent_mana'); + + $data['description'] = $this->input->post('description'); + + $this->load->model('assignment_model'); + + if ($id == -1) + { + //making new + $this->assignment_model->add_assignment_admin($data); + } + else + { + //editing + $this->assignment_model->edit_assignment_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/assignment_tool'); + } + } + +//technology tool + function technology_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('technology_model'); + + $data['technologies'] = $this->technology_model->list_technologies_admin(); + + $this->headers('admin'); + $this->load->view('admin/technology_tool/list.php', $data); + $this->footer(); + } + + function technology($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('technology_model'); + $this->load->model('spell_model'); + $this->load->model('unit_model'); + + $this->form_validation->set_rules('description', 'Description', 'required'); + + $this->form_validation->set_rules('time', 'Time', 'integer'); + + $this->form_validation->set_rules('score', 'Score', 'integer'); + + $this->form_validation->set_rules('cost_food', 'cost_food', 'integer'); + $this->form_validation->set_rules('cost_wood', 'cost_wood', 'integer'); + $this->form_validation->set_rules('cost_stone', 'cost_stone', 'integer'); + $this->form_validation->set_rules('cost_iron', 'cost_iron', 'integer'); + $this->form_validation->set_rules('cost_mana', 'cost_mana', 'integer'); + + $this->form_validation->set_rules('mod_max_food', 'Mod Max Food', 'integer'); + $this->form_validation->set_rules('mod_max_wood', 'Mod Max Wood', 'integer'); + $this->form_validation->set_rules('mod_max_stone', 'Mod Max Stone', 'integer'); + $this->form_validation->set_rules('mod_max_iron', 'Mod Max Iron', 'integer'); + $this->form_validation->set_rules('mod_max_mana', 'Mod Max Mana', 'integer'); + + $this->form_validation->set_rules('mod_rate_food', 'Mod Rate Food', 'numeric'); + $this->form_validation->set_rules('mod_rate_wood', 'Mod Rate Wood', 'numeric'); + $this->form_validation->set_rules('mod_rate_stone', 'Mod Rate Stone', 'numeric'); + $this->form_validation->set_rules('mod_rate_iron', 'Mod Rate Iron', 'numeric'); + $this->form_validation->set_rules('mod_rate_mana', 'Mod Rate Mana', 'numeric'); + + $this->form_validation->set_rules('mod_percent_food', 'Mod Percent Food', 'integer'); + $this->form_validation->set_rules('mod_percent_wood', 'Mod Percent Wood', 'integer'); + $this->form_validation->set_rules('mod_percent_stone', 'Mod Percent Stone', 'integer'); + $this->form_validation->set_rules('mod_percent_iron', 'Mod Percent Iron', 'integer'); + $this->form_validation->set_rules('mod_percent_mana', 'Mod Percent Mana', 'integer'); + + + //mod_spell_id dropdown + $data['mspidopt'] = $this->spell_model->get_spell_mod_drop_admin(); + $data['sspid'] = $this->input->post('mod_spell_id'); + + //mod_create_id dropdown + $data['mcidopt'] = $this->unit_model->list_create_mod_drop_admin(); + $data['smcid'] = $this->input->post('mod_create_id'); + + $data['sflai'] = $this->input->post('flag_ai'); + + $data['selissec'] = $this->input->post('is_secondary'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/technology_tool/technology', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['technology'] = $this->technology_model->get_technology_admin( + $id); + + $this->load->view('admin/technology_tool/technology', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['description'] = $this->input->post('description'); + + $data['time'] = $this->input->post('time'); + + $data['score'] = $this->input->post('score'); + + $data['cost_food'] = $this->input->post('cost_food'); + $data['cost_wood'] = $this->input->post('cost_wood'); + $data['cost_stone'] = $this->input->post('cost_stone'); + $data['cost_iron'] = $this->input->post('cost_iron'); + $data['cost_mana'] = $this->input->post('cost_mana'); + + $data['mod_max_food'] = $this->input->post('mod_max_food'); + $data['mod_max_wood'] = $this->input->post('mod_max_wood'); + $data['mod_max_stone'] = $this->input->post('mod_max_stone'); + $data['mod_max_iron'] = $this->input->post('mod_max_iron'); + $data['mod_max_mana'] = $this->input->post('mod_max_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $data['mod_percent_food'] = $this->input->post('mod_percent_food'); + $data['mod_percent_wood'] = $this->input->post('mod_percent_wood'); + $data['mod_percent_stone'] = $this->input->post('mod_percent_stone'); + $data['mod_percent_iron'] = $this->input->post('mod_percent_iron'); + $data['mod_percent_mana'] = $this->input->post('mod_percent_mana'); + + $data['mod_create_id'] = $this->input->post('mod_create_id'); + $data['mod_spell_id'] = $this->input->post('mod_spell_id'); + + $data['flag_ai'] = $this->input->post('flag_ai'); + + $data['is_secondary'] = $this->input->post('is_secondary'); + + $this->load->model('building_model'); + + if ($id == -1) + { + //making new + $this->technology_model->add_technology_admin($data); + } + else + { + //editing + $this->technology_model->edit_technology_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/technology_tool'); + } + } + +//technology_group_tool + function technology_group_desc($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('technology_model'); + + $this->form_validation->set_rules('group_name', 'Group Name', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/technology_group_tool/tech_group_desc', + $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['group'] = $this->technology_model->get_tech_group_desc_admin( + $id); + + $this->load->view('admin/technology_group_tool/tech_group_desc', + $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['group_name'] = $this->input->post('group_name'); + + $this->load->model('technology_model'); + + if ($id == -1) + { + //making new + $this->technology_model->add_tech_group_desc_admin($data); + } + else + { + //editing + $this->technology_model->edit_tech_group_desc_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/technology_group_tool'); + } + } + +//technology group tool + function technology_group_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('technology_model'); + + $data['groups'] = $this->technology_model->list_tech_groups_admin(); + + $this->headers('admin'); + $this->load->view('admin/technology_group_tool/list.php', $data); + $this->footer(); + } + + function technology_group($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('technology_model'); + + $this->form_validation->set_rules('action', 'Action', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + $data['id'] = $id; + $data['group'] = $this->technology_model->get_group_admin($id); + $data['opttech'] = $this->technology_model->list_tech_drop_admin(); + $data['seltech'] = $this->input->post('add'); + + $this->load->view('admin/technology_group_tool/tech_groups', $data); + + $this->footer(); + } + else + { + $action = $this->input->post('action'); + + $this->load->model('technology_model'); + + if ($action == 'add') + { + $techid = $this->input->post('add'); + + $this->technology_model->add_tech_to_group_admin($id, $techid); + } + elseif ($action == 'delete') + { + $techid = $this->input->post('id'); + $this->technology_model->remove_tech_from_group_admin($id, $techid); + } + $this->load->helper('url'); + + redirect('admin/technology_group/' . $id); + } + } + +//technology requirements tool + function technology_requirements_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('technology_model'); + + $data['technologies'] = $this->technology_model->list_tech_have_req_admin(); + + $this->headers('admin'); + $this->load->view('admin/technology_requirements_tool/list.php', $data); + $this->footer(); + } + + function have_technology_requirement($id = -1) + { + if ($this->userlevel < 5) show_404(); + + if (!$id) + { + $this->load->helper('url'); + redirect('admin/admin_panel'); + } + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('action', 'Action', 'required'); + + $this->load->model('technology_model'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + $data['opts'] = $this->technology_model->list_tech_drop_admin(); + + $this->load->view('admin/technology_requirements_tool/add_to_list', + $data); + + } + else + { + $data['id'] = $id; + $data['tech'] = $this->technology_model->get_req_list_item_admin( + $id); + + $this->load->view('admin/technology_requirements_tool/remove_conf', + $data); + } + + $this->footer(); + } + else + { + $action = $this->input->post('action'); + + if ($action == 'new') + { + $data['technologyid'] = $this->input->post('technologyid'); + $data['comment'] = $this->input->post('comment'); + + $this->technology_model->add_to_req_list_admin($data); + } + + if ($action == 'delete') + { + $id = $this->input->post('technologyid'); + + $this->technology_model->remove_from_req_list_admin($id); + } + + $this->load->helper('url'); + redirect('admin/technology_requirements_tool'); + } + } + + function technology_requirements($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('technology_model'); + + $this->form_validation->set_rules('action', 'Action', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + $data['id'] = $id; + + + $data['technology'] = $this->technology_model->get_tech_by_req_id_admin( + $id); + $data['required'] = $this->technology_model->get_tech_requirements_admin( + $data['technology']['id']); + + $data['opttech'] = $this->technology_model->list_tech_drop_admin(); + $data['seltech'] = $this->input->post('add'); + + $this->load->view('admin/technology_requirements_tool/tech_req', $data); + + $this->footer(); + } + else + { + $action = $this->input->post('action'); + + if ($action == 'add') + { + $techid = $this->input->post('technologyid'); + $addtechid = $this->input->post('add'); + + $this->technology_model->add_tech_req_admin($techid, $addtechid); + } + elseif ($action == 'delete') + { + $tid = $this->input->post('id'); + $this->technology_model->remove_tech_req_admin($tid); + } + $this->load->helper('url'); + + redirect('admin/technology_requirements/' . $id); + } + } + +//spell_tool + function spell_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('spell_model'); + + $data['spells'] = $this->spell_model->list_spells_admin(); + + $this->headers('admin'); + $this->load->view('admin/spell_tool/list.php', $data); + $this->footer(); + } + + function spell($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('spell_model'); + $this->load->model('weather_model'); + + //spell effects + $data['seff'] = $this->input->post('effect'); + $data['opteff'] = $this->spell_model->get_spell_effects_admin(); + + $this->form_validation->set_rules('duration', 'Duration', 'required|is_natural'); + $this->form_validation->set_rules('cooldown', 'Cooldown', 'required|is_natural'); + $this->form_validation->set_rules('description', 'Description', 'required'); + $this->form_validation->set_rules('description_admin', 'Desc Admin', 'required'); + + $data['sweather'] = $this->input->post('weather_change_to'); + $data['optweather'] = $this->weather_model->get_weathers_drop_admin(); + + $this->form_validation->set_rules('cost_food', 'cost_food', 'integer'); + $this->form_validation->set_rules('cost_wood', 'cost_wood', 'integer'); + $this->form_validation->set_rules('cost_stone', 'cost_stone', 'integer'); + $this->form_validation->set_rules('cost_iron', 'cost_iron', 'integer'); + $this->form_validation->set_rules('cost_mana', 'cost_mana', 'integer'); + + $this->form_validation->set_rules('mod_max_food', 'Mod Max Food', 'integer'); + $this->form_validation->set_rules('mod_max_wood', 'Mod Max Wood', 'integer'); + $this->form_validation->set_rules('mod_max_stone', 'Mod Max Stone', 'integer'); + $this->form_validation->set_rules('mod_max_iron', 'Mod Max Iron', 'integer'); + $this->form_validation->set_rules('mod_max_mana', 'Mod Max Mana', 'integer'); + + $this->form_validation->set_rules('mod_rate_food', 'Mod Rate Food', 'numeric'); + $this->form_validation->set_rules('mod_rate_wood', 'Mod Rate Wood', 'numeric'); + $this->form_validation->set_rules('mod_rate_stone', 'Mod Rate Stone', 'numeric'); + $this->form_validation->set_rules('mod_rate_iron', 'Mod Rate Iron', 'numeric'); + $this->form_validation->set_rules('mod_rate_mana', 'Mod Rate Mana', 'numeric'); + + $this->form_validation->set_rules('mod_percent_food', 'Mod Percent Food', 'integer'); + $this->form_validation->set_rules('mod_percent_wood', 'Mod Percent Wood', 'integer'); + $this->form_validation->set_rules('mod_percent_stone', 'Mod Percent Stone', 'integer'); + $this->form_validation->set_rules('mod_percent_iron', 'Mod Percent Iron', 'integer'); + $this->form_validation->set_rules('mod_percent_mana', 'Mod Percent Mana', 'integer'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/spell_tool/spell', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['spell'] = $this->spell_model->get_spell_admin($id); + + $this->load->view('admin/spell_tool/spell', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['effect'] = $this->input->post('effect'); + $data['duration'] = $this->input->post('duration'); + $data['cooldown'] = $this->input->post('cooldown'); + $data['description'] = $this->input->post('description'); + $data['description_admin'] = $this->input->post('description_admin'); + + $data['weather_change_to'] = $this->input->post('weather_change_to'); + + $data['cost_food'] = $this->input->post('cost_food'); + $data['cost_wood'] = $this->input->post('cost_wood'); + $data['cost_stone'] = $this->input->post('cost_stone'); + $data['cost_iron'] = $this->input->post('cost_iron'); + $data['cost_mana'] = $this->input->post('cost_mana'); + + $data['mod_max_food'] = $this->input->post('mod_max_food'); + $data['mod_max_wood'] = $this->input->post('mod_max_wood'); + $data['mod_max_stone'] = $this->input->post('mod_max_stone'); + $data['mod_max_iron'] = $this->input->post('mod_max_iron'); + $data['mod_max_mana'] = $this->input->post('mod_max_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $data['mod_percent_food'] = $this->input->post('mod_percent_food'); + $data['mod_percent_wood'] = $this->input->post('mod_percent_wood'); + $data['mod_percent_stone'] = $this->input->post('mod_percent_stone'); + $data['mod_percent_iron'] = $this->input->post('mod_percent_iron'); + $data['mod_percent_mana'] = $this->input->post('mod_percent_mana'); + + $this->load->model('spell_model'); + + if ($id == -1) + { + //making new + $this->spell_model->add_spell_admin($data); + } + else + { + //editing + $this->spell_model->edit_spell_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/spell_tool'); + } + } + +//weather_tool + function weather_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('weather_model'); + + $data['weathers'] = $this->weather_model->list_weathers_admin(); + + $this->headers('admin'); + $this->load->view('admin/weather_tool/list.php', $data); + $this->footer(); + } + + function weather($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('weather_model'); + + $this->form_validation->set_rules('name', 'Name', 'required'); + $this->form_validation->set_rules('description', 'Description', 'required'); + $this->form_validation->set_rules('art', 'Art', 'required'); + $this->form_validation->set_rules('css', 'CSS', 'required'); + + //spell effects + $data['seff'] = $this->input->post('effect'); + $data['opteff'] = $this->weather_model->get_weather_effects_drop_admin(); + + $this->form_validation->set_rules('mod_max_food', 'Mod Max Food', 'integer'); + $this->form_validation->set_rules('mod_max_wood', 'Mod Max Wood', 'integer'); + $this->form_validation->set_rules('mod_max_stone', 'Mod Max Stone', 'integer'); + $this->form_validation->set_rules('mod_max_iron', 'Mod Max Iron', 'integer'); + $this->form_validation->set_rules('mod_max_mana', 'Mod Max Mana', 'integer'); + + $this->form_validation->set_rules('mod_percent_food', 'Mod Percent Food', 'integer'); + $this->form_validation->set_rules('mod_percent_wood', 'Mod Percent Wood', 'integer'); + $this->form_validation->set_rules('mod_percent_stone', 'Mod Percent Stone', 'integer'); + $this->form_validation->set_rules('mod_percent_iron', 'Mod Percent Iron', 'integer'); + $this->form_validation->set_rules('mod_percent_mana', 'Mod Percent Mana', 'integer'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/weather_tool/weather', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['weather'] = $this->weather_model->get_weather_admin($id); + + $this->load->view('admin/weather_tool/weather', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + + $data['name'] = $this->input->post('name'); + $data['description'] = $this->input->post('description'); + $data['art'] = $this->input->post('art'); + $data['css'] = $this->input->post('css'); + + $data['effect'] = $this->input->post('effect'); + + $data['cost_food'] = $this->input->post('cost_food'); + $data['cost_wood'] = $this->input->post('cost_wood'); + $data['cost_stone'] = $this->input->post('cost_stone'); + $data['cost_iron'] = $this->input->post('cost_iron'); + $data['cost_mana'] = $this->input->post('cost_mana'); + + $data['mod_max_food'] = $this->input->post('mod_max_food'); + $data['mod_max_wood'] = $this->input->post('mod_max_wood'); + $data['mod_max_stone'] = $this->input->post('mod_max_stone'); + $data['mod_max_iron'] = $this->input->post('mod_max_iron'); + $data['mod_max_mana'] = $this->input->post('mod_max_mana'); + + $data['mod_rate_food'] = $this->input->post('mod_rate_food'); + $data['mod_rate_wood'] = $this->input->post('mod_rate_wood'); + $data['mod_rate_stone'] = $this->input->post('mod_rate_stone'); + $data['mod_rate_iron'] = $this->input->post('mod_rate_iron'); + $data['mod_rate_mana'] = $this->input->post('mod_rate_mana'); + + $data['mod_percent_food'] = $this->input->post('mod_percent_food'); + $data['mod_percent_wood'] = $this->input->post('mod_percent_wood'); + $data['mod_percent_stone'] = $this->input->post('mod_percent_stone'); + $data['mod_percent_iron'] = $this->input->post('mod_percent_iron'); + $data['mod_percent_mana'] = $this->input->post('mod_percent_mana'); + + $this->load->model('weather_model'); + + if ($id == -1) + { + //making new + $this->weather_model->add_weather_admin($data); + } + else + { + //editing + $this->weather_model->edit_weather_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/weather_tool'); + } + } + + //HERO TOOLS + + //hero templates + function hero_template_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('hero_model'); + + $data['templates'] = $this->hero_model->all_hero_templates_admin(); + + $this->headers('admin'); + $this->load->view('admin/hero_template_tool/list.php', $data); + $this->footer(); + } + + function hero_templates($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('hero_model'); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('classname', 'Classname', 'required|alpha'); + + $this->form_validation->set_rules('nomod_max_health', 'Nomod Health', 'required|is_natural'); + $this->form_validation->set_rules('nomod_max_mana', 'Nomod Mana', 'required|is_natural'); + + $this->form_validation->set_rules('agility', 'Agility', 'integer'); + $this->form_validation->set_rules('strength', 'Strength', 'integer'); + $this->form_validation->set_rules('stamina', 'Stamina', 'integer'); + $this->form_validation->set_rules('intellect', 'Intellect', 'integer'); + $this->form_validation->set_rules('spirit', 'Spirit', 'integer'); + + $this->form_validation->set_rules('nomod_attackpower', 'Nomod Attackpower', 'integer'); + + $this->form_validation->set_rules('nomod_dodge', 'Nomod Dodge', 'numeric'); + $this->form_validation->set_rules('nomod_parry', 'Nomod Parry', 'numeric'); + $this->form_validation->set_rules('hit', 'Hit', 'numeric'); + $this->form_validation->set_rules('nomod_crit', 'Nomod Crit', 'numeric'); + + $this->form_validation->set_rules('nomod_damage_min', 'Nomod Damage Min', 'integer'); + $this->form_validation->set_rules('nomod_damage_max', 'Nomod Damage Max', 'integer'); + + $this->form_validation->set_rules('nomod_ranged_damage_min', 'Nomod Damage Min', 'integer'); + $this->form_validation->set_rules('nomod_ranged_damage_max', 'Nomod Damage Max', 'integer'); + + $this->form_validation->set_rules('nomod_heal_min', 'Nomod Heal Min', 'integer'); + $this->form_validation->set_rules('nomod_heal_max', 'Nomod Heal Max', 'integer'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/hero_template_tool/hero', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['template'] = $this->hero_model->get_template_admin($id); + + $this->load->view('admin/hero_template_tool/hero', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + + $data['classname'] = $this->input->post('classname'); + + $data['nomod_max_health'] = $this->input->post('nomod_max_health'); + $data['nomod_max_mana'] = $this->input->post('nomod_max_mana'); + + $data['agility'] = $this->input->post('agility'); + $data['strength'] = $this->input->post('strength'); + $data['stamina'] = $this->input->post('stamina'); + $data['intellect'] = $this->input->post('intellect'); + $data['spirit'] = $this->input->post('spirit'); + + $data['nomod_attackpower'] = $this->input->post('nomod_attackpower'); + + $data['nomod_dodge'] = $this->input->post('nomod_dodge'); + $data['nomod_parry'] = $this->input->post('nomod_parry'); + $data['hit'] = $this->input->post('hit'); + $data['nomod_crit'] = $this->input->post('nomod_crit'); + + $data['nomod_damage_min'] = $this->input->post('nomod_damage_min'); + $data['nomod_damage_max'] = $this->input->post('nomod_damage_max'); + + $data['nomod_ranged_damage_min'] = $this->input->post('nomod_ranged_damage_min'); + $data['nomod_ranged_damage_max'] = $this->input->post('nomod_ranged_damage_max'); + + $data['nomod_heal_min'] = $this->input->post('nomod_heal_min'); + $data['nomod_heal_max'] = $this->input->post('nomod_heal_max'); + + if ($id == -1) + { + //making new + $this->hero_model->add_template_admin($data); + } + else + { + //editing + $this->hero_model->edit_template_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/hero_template_tool'); + } + } + +//technology requirements tool + function hero_inventory_template_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('hero_model'); + + $data['classes'] = $this->hero_model->all_hero_templates_admin(); + + $this->headers('admin'); + $this->load->view('admin/hero_inventory_template_tool/list.php', $data); + $this->footer(); + } + + function hero_inventory_templates($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('item_model'); + + $this->form_validation->set_rules('action', 'Action', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + $data['id'] = $id; + + $this->load->model('hero_model'); + + $data['hero'] = $this->hero_model->get_template_admin($id); + $data['items'] = $this->item_model->get_class_item_templates($id); + + $data['optitems'] = $this->item_model->all_items_drop_admin(); + $data['selitems'] = $this->input->post('add'); + + $this->load->view('admin/hero_inventory_template_tool/items', $data); + + $this->footer(); + } + else + { + $action = $this->input->post('action'); + + if ($action == 'add') + { + $classid = $this->input->post('classid'); + $additemid = $this->input->post('add'); + + $this->item_model->add_hero_item_template_admin($classid, $additemid); + } + elseif ($action == 'delete') + { + $iid = $this->input->post('id'); + $this->item_model->remove_hero_item_template_admin($iid); + } + $this->load->helper('url'); + + redirect('admin/hero_inventory_templates/' . $id); + } + } + + //item tool + function item_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('item_model'); + + $data['items'] = $this->item_model->all_items_admin(); + + $this->headers('admin'); + $this->load->view('admin/item_tool/list.php', $data); + $this->footer(); + } + + function items($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('item_model'); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('name', 'Name', 'required'); + $this->form_validation->set_rules('icon', 'Icon', 'required'); + + $data['selquality'] = $this->input->post('quality'); + + $this->form_validation->set_rules('itemlevel', 'Itemlevel', 'integer'); + $this->form_validation->set_rules('stack', 'Stack', 'integer'); + + $data['seltype'] = $this->input->post('type'); + $data['selsubtype'] = $this->input->post('subtype'); + $data['selsubsubtype'] = $this->input->post('subsubtype'); + + $this->form_validation->set_rules('sell_price', 'Sell Price', 'integer'); + $this->form_validation->set_rules('buy_price', 'Buy Price', 'integer'); + + $this->form_validation->set_rules('text', 'Text', 'alphanumeric'); + + $data['selsoulbound'] = $this->input->post('soulbound'); + + $data['optspell'] = array('0' => 'NYI!'); + $data['selspell'] = $this->input->post('spell'); + + $data['optproc'] = array('0' => 'NYI!'); + $data['selproc'] = $this->input->post('proc'); + + $this->form_validation->set_rules('req_level', 'Req Level', 'integer'); + + $data['selreqclass'] = $this->input->post('req_class'); + + $this->form_validation->set_rules('nomod_max_health', 'Nomod Max Health', 'is_natural'); + $this->form_validation->set_rules('nomod_max_mana', 'Nomod Max Mana', 'is_natural'); + + $this->form_validation->set_rules('percent_max_health', 'Percent Max Health', 'is_natural'); + $this->form_validation->set_rules('percent_max_mana', 'Percent Max Mana', 'is_natural'); + + + $this->form_validation->set_rules('nomod_agility', 'Nomod Agility', 'integer'); + $this->form_validation->set_rules('nomod_strength', 'Nomod Strength', 'integer'); + $this->form_validation->set_rules('nomod_stamina', 'Nomod Stamina', 'integer'); + $this->form_validation->set_rules('nomod_intellect', 'Nomod Intellect', 'integer'); + $this->form_validation->set_rules('nomod_spirit', 'Nomod Spirit', 'integer'); + + $this->form_validation->set_rules('percent_agility', 'Percent Agility', 'integer'); + $this->form_validation->set_rules('percent_strength', 'Percent Strength', 'integer'); + $this->form_validation->set_rules('percent_stamina', 'Percent Stamina', 'integer'); + $this->form_validation->set_rules('percent_intellect', 'Percent Intellect', 'integer'); + $this->form_validation->set_rules('percent_spirit', 'Percent Spirit', 'integer'); + + $this->form_validation->set_rules('nomod_attackpower', 'Nomod Attackpower', 'integer'); + $this->form_validation->set_rules('percent_attackpower', 'Percent Attackpower', 'integer'); + + $this->form_validation->set_rules('nomod_armor', 'Nomod Armor', 'integer'); + $this->form_validation->set_rules('percent_armor', 'Percent Armor', 'integer'); + + $this->form_validation->set_rules('nomod_dodge', 'Nomod Dodge', 'numeric'); + $this->form_validation->set_rules('nomod_parry', 'Nomod Parry', 'numeric'); + $this->form_validation->set_rules('hit', 'Hit', 'numeric'); + $this->form_validation->set_rules('nomod_crit', 'Nomod Crit', 'numeric'); + + $this->form_validation->set_rules('nomod_damage_min', 'Nomod Damage Min', 'integer'); + $this->form_validation->set_rules('nomod_damage_max', 'Nomod Damage Max', 'integer'); + $this->form_validation->set_rules('percent_damage_min', 'Percent Damage Min', 'integer'); + $this->form_validation->set_rules('percent_damage_max', 'Percent Damage Max', 'integer'); + + $this->form_validation->set_rules('nomod_ranged_damage_min', 'Nomod Ranged Damage Min', 'integer'); + $this->form_validation->set_rules('nomod_ranged_damage_max', 'Nomod Ranged Damage Max', 'integer'); + $this->form_validation->set_rules('percent_ranged_damage_min', 'Percent Ranged Damage Min', 'integer'); + $this->form_validation->set_rules('percent_ranged_damage_max', 'Percent Ranged Damage Max', 'integer'); + + $this->form_validation->set_rules('nomod_heal_min', 'Nomod Heal Min', 'integer'); + $this->form_validation->set_rules('nomod_heal_max', 'Nomod Heal Max', 'integer'); + $this->form_validation->set_rules('percent_heal_min', 'Percent Heal Min', 'integer'); + $this->form_validation->set_rules('percent_heal_max', 'Percent Heal Max', 'integer'); + + $this->form_validation->set_rules('life_leech', 'Life Leech', 'integer'); + $this->form_validation->set_rules('mana_leech', 'Mana Leech', 'integer'); + + $this->form_validation->set_rules('level_modifier', 'Level Modifier', 'integer'); + $this->form_validation->set_rules('level_modifier_max', 'Level Modifier Max', 'integer'); + + $this->form_validation->set_rules('data1', 'Data1', 'integer'); + $this->form_validation->set_rules('data2', 'Data2', 'integer'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/item_tool/item', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['item'] = $this->item_model->get_item_admin($id); + + $this->load->view('admin/item_tool/item', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + + $data['name'] = $this->input->post('name'); + $data['icon'] = $this->input->post('icon'); + + $data['quality'] = $this->input->post('quality'); + + $data['itemlevel'] = $this->input->post('itemlevel'); + $data['stack'] = $this->input->post('stack'); + + $data['type'] = $this->input->post('type'); + $data['subtype'] = $this->input->post('subtype'); + $data['subsubtype'] = $this->input->post('subsubtype'); + + $data['sell_price'] = $this->input->post('sell_price'); + $data['buy_price'] = $this->input->post('buy_price'); + + $data['text'] = $this->input->post('text'); + + $data['soulbound'] = $this->input->post('soulbound'); + + $data['spell'] = $this->input->post('spell'); + + $data['proc'] = $this->input->post('proc'); + + $data['req_level'] = $this->input->post('req_level'); + + $data['req_class'] = $this->input->post('req_class'); + + $data['nomod_max_health'] = $this->input->post('nomod_max_health'); + $data['nomod_max_mana'] = $this->input->post('nomod_max_mana'); + + $data['percent_max_health'] = $this->input->post('percent_max_health'); + $data['percent_max_mana'] = $this->input->post('percent_max_mana'); + + $data['nomod_agility'] = $this->input->post('nomod_agility'); + $data['nomod_strength'] = $this->input->post('nomod_strength'); + $data['nomod_stamina'] = $this->input->post('nomod_stamina'); + $data['nomod_intellect'] = $this->input->post('nomod_intellect'); + $data['nomod_spirit'] = $this->input->post('nomod_spirit'); + + $data['percent_agility'] = $this->input->post('percent_agility'); + $data['percent_strength'] = $this->input->post('percent_strength'); + $data['percent_stamina'] = $this->input->post('percent_stamina'); + $data['percent_intellect'] = $this->input->post('percent_intellect'); + $data['percent_spirit'] = $this->input->post('percent_spirit'); + + $data['nomod_attackpower'] = $this->input->post('nomod_attackpower'); + $data['percent_attackpower'] = $this->input->post('percent_attackpower'); + + $data['nomod_armor'] = $this->input->post('nomod_armor'); + $data['percent_armor'] = $this->input->post('percent_armor'); + + $data['nomod_dodge'] = $this->input->post('nomod_dodge'); + $data['nomod_parry'] = $this->input->post('nomod_parry'); + $data['hit'] = $this->input->post('hit'); + $data['nomod_crit'] = $this->input->post('nomod_crit'); + + $data['nomod_damage_min'] = $this->input->post('nomod_damage_min'); + $data['nomod_damage_max'] = $this->input->post('nomod_damage_max'); + + $data['percent_damage_min'] = $this->input->post('percent_damage_min'); + $data['percent_damage_max'] = $this->input->post('percent_damage_max'); + + $data['nomod_ranged_damage_min'] = $this->input->post('nomod_ranged_damage_min'); + $data['nomod_ranged_damage_max'] = $this->input->post('nomod_ranged_damage_max'); + + $data['percent_ranged_damage_min'] = $this->input->post('percent_ranged_damage_min'); + $data['percent_ranged_damage_max'] = $this->input->post('percent_ranged_damage_max'); + + $data['nomod_heal_min'] = $this->input->post('nomod_heal_min'); + $data['nomod_heal_max'] = $this->input->post('nomod_heal_max'); + + $data['percent_heal_min'] = $this->input->post('percent_heal_min'); + $data['percent_heal_max'] = $this->input->post('percent_heal_max'); + + $data['life_leech'] = $this->input->post('life_leech'); + $data['mana_leech'] = $this->input->post('mana_leech'); + + $data['level_modifier'] = $this->input->post('level_modifier'); + $data['level_modifier_max'] = $this->input->post('level_modifier_max'); + + $data['data1'] = $this->input->post('data1'); + $data['data2'] = $this->input->post('data2'); + + if ($id == -1) + { + //making new + $this->item_model->add_item_admin($data); + } + else + { + //editing + $this->item_model->edit_item_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/item_tool'); + } + } + + +//AI Units + function ai_unit_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('ai_model'); + + $data['units'] = $this->ai_model->list_units_admin(); + + $this->headers('admin'); + $this->load->view('admin/ai_unit_tool/list.php', $data); + $this->footer(); + } + + function ai_unit($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('unit_model'); + $this->load->model('ai_model'); + + $this->form_validation->set_rules('name', 'Name', 'required'); + $this->form_validation->set_rules('icon', 'Icon', 'required'); + $this->form_validation->set_rules('ability', 'Ability', 'integer'); + $this->form_validation->set_rules('can_carry', 'Can Carry', 'integer'); + $this->form_validation->set_rules('attack', 'Attack', 'numeric'); + $this->form_validation->set_rules('Defense', 'Defense', 'numeric'); + $this->form_validation->set_rules('rate', 'Rate', 'numeric'); + $this->form_validation->set_rules('per_score', 'Per Score', 'integer'); + $this->form_validation->set_rules('turn', 'Turn', 'integer'); + + $data['sstrong'] = $this->input->post('strong_against'); + $data['sweak'] = $this->input->post('weak_against'); + + $data['optu'] = $this->unit_model->get_unit_list_dropdown_admin(); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/ai_unit_tool/unit', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['unit'] = $this->ai_model->get_unit_admin($id); + + $this->load->view('admin/ai_unit_tool/unit', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['name'] = $this->input->post('name'); + $data['icon'] = $this->input->post('icon'); + $data['ability'] = $this->input->post('ability'); + + $data['can_carry'] = $this->input->post('can_carry'); + $data['attack'] = $this->input->post('attack'); + $data['defense'] = $this->input->post('defense'); + + $data['rate'] = $this->input->post('rate'); + $data['per_score'] = $this->input->post('per_score'); + $data['turn'] = $this->input->post('turn'); + $data['strong_against'] = $this->input->post('strong_against'); + $data['weak_against'] = $this->input->post('weak_against'); + + $this->load->model('ai_model'); + + if ($id == -1) + { + //making new + $this->ai_model->add_unit_admin($data); + } + else + { + //editing + $this->ai_model->edit_unit_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/ai_unit_tool'); + } + } + + +//AI Settings + function ai_settings_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('ai_model'); + + $data['settings'] = $this->ai_model->get_settings_list_admin(); + + $this->headers('admin'); + $this->load->view('admin/ai_settings_tool/list.php', $data); + $this->footer(); + } + + + function ai_settings($id = -1) + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + $this->load->model('ai_model'); + + $this->form_validation->set_rules('setting', 'Setting', 'required'); + $this->form_validation->set_rules('value', 'Value', 'required'); + $this->form_validation->set_rules('description', 'Description', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + if ($id == -1) + { + //making new + $data['new'] = TRUE; + + $this->load->view('admin/ai_settings_tool/settings', $data); + } + else + { + //editing + $data['new'] = FALSE; + + $data['setting'] = $this->ai_model->get_setting_admin($id); + + $this->load->view('admin/ai_settings_tool/settings', $data); + } + + $this->footer(); + } + else + { + $data['id'] = $id; + $data['setting'] = $this->input->post('setting'); + $data['value'] = $this->input->post('value'); + $data['description'] = $this->input->post('description'); + + $this->load->model('ai_model'); + + if ($id == -1) + { + //making new + $this->ai_model->add_setting_admin($data); + } + else + { + //editing + $this->ai_model->edit_setting_admin($data); + } + + $this->load->helper('url'); + + redirect('admin/ai_settings_tool'); + } + } + + +//map tools + function map_tool() + { + if ($this->userlevel < 5) show_404(); + $this->load->model('map_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('action', 'Action', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + + $data['files'] = $this->map_model->get_map_list_admin(); + $this->load->view('admin/map_tool/list', $data); + + $this->footer(); + } + else + { + $action = $this->input->post('action'); + + if ($action == 'apply') + { + $file = $this->input->post('filename'); + + $this->map_model->apply_map_admin($file); + } + + + $this->load->helper('url'); + redirect('admin/map_tool'); + } + } + + function map_generator() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('map_model'); + $this->map_model->generate_map_admin(); + + $this->load->helper('url'); + redirect('admin/map_tool'); + + } + +//image tool + function menu_image() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('image_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('submit', 'Submit', 'required'); + + $data['optimg'] = $this->image_model->get_file_list_drop(); + $data['optfont'] = $this->image_model->get_font_list_drop(); + $data['optvalign'] = $this->image_model->get_v_align_drop(); + $data['opthalign'] = $this->image_model->get_h_align_drop(); + $data['optgroup'] = $this->image_model->get_menu_group_list_drop(); + + $this->headers('admin'); + + if (!$this->form_validation->run()) + { + $this->load->view('admin/image_tool/menu_image', $data); + } + else + { + $data['wm_type'] = 'text'; + $data['quality'] = '100%'; + + $data['file'] = $this->input->post('file'); + + $data['padding'] = $this->input->post('padding'); + $data['wm_vrt_alignment'] = $this->input->post('v_align'); + $data['wm_hor_alignment'] = $this->input->post('h_align'); + $data['wm_hor_offset'] = $this->input->post('h_offset'); + $data['wm_vrt_offset'] = $this->input->post('v_offset'); + + $data['wm_text'] = $this->input->post('text'); + $data['wm_font_path'] = './system/fonts/' . $this->input->post('font'); + $data['wm_font_size'] = $this->input->post('font_size'); + $data['wm_font_color'] = $this->input->post('font_color'); + $data['wm_shadow_color'] = $this->input->post('shadow_color'); + $data['wm_shadow_distance'] = $this->input->post('shadow_distance'); + + $data['apply_all'] = $this->input->post('apply_all'); + $data['menu_group'] = $this->input->post('menu_group'); + + $this->image_model->apply_menu_images($data); + + $this->image_model->save_menu_data($data); + + $view['applyall'] = $data['apply_all']; + $view['list'] = $this->image_model->get_menu_file_list($data['menu_group']); + $view['text'] = $data['wm_text']; + + $this->load->view('admin/image_tool/menu_image_view', $view); + } + + $this->footer(); + } + + function slot_image() + { + if ($this->userlevel < 5) show_404(); + + + $this->load->model('image_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('submit', 'Submit', 'required'); + + $data['optimg'] = $this->image_model->get_file_list_drop(); + $data['optfont'] = $this->image_model->get_font_list_drop(); + $data['optvalign'] = $this->image_model->get_v_align_drop(); + $data['opthalign'] = $this->image_model->get_h_align_drop(); + $data['optgroup'] = $this->image_model->get_menu_group_list_drop(); + $data['optoverlay'] = $this->image_model->get_overlay_list_drop(); + + $this->headers('admin'); + + if (!$this->form_validation->run()) + { + $this->load->view('admin/image_tool/slot_image', $data); + } + else + { + $path = './img/imggen/overlay/'; + + $data['wm_type'] = $this->input->post('wm_type'); + $data['quality'] = '100%'; + + $data['file'] = $this->input->post('file'); + + $data['padding'] = $this->input->post('padding'); + $data['wm_vrt_alignment'] = $this->input->post('v_align'); + $data['wm_hor_alignment'] = $this->input->post('h_align'); + $data['wm_hor_offset'] = $this->input->post('h_offset'); + $data['wm_vrt_offset'] = $this->input->post('v_offset'); + + $data['wm_text'] = $this->input->post('text'); + $data['wm_font_path'] = './system/fonts/' . $this->input->post('font'); + $data['wm_font_size'] = $this->input->post('font_size'); + $data['wm_font_color'] = $this->input->post('font_color'); + $data['wm_shadow_color'] = $this->input->post('shadow_color'); + $data['wm_shadow_distance'] = $this->input->post('shadow_distance'); + + $data['wm_overlay_path'] = $path . $this->input->post('wm_overlay_path'); + $data['wm_opacity'] = $this->input->post('wm_opacity'); + $data['wm_x_transp'] = $this->input->post('wm_x_transp'); + $data['wm_y_transp'] = $this->input->post('wm_y_transp'); + + $data['rank_text'] = $this->input->post('rank_text'); + $data['rank_font_size'] = $this->input->post('rank_font_size'); + $data['rank_v_align'] = $this->input->post('rank_v_align'); + $data['rank_h_align'] = $this->input->post('rank_h_align'); + $data['rank_h_offset'] = $this->input->post('rank_h_offset'); + $data['rank_v_offset'] = $this->input->post('rank_v_offset'); + $data['rank_padding'] = $this->input->post('rank_padding'); + + $this->image_model->apply_slot_images($data); + + $this->image_model->save_slot_data($data); + + $this->load->view('admin/image_tool/slot_image_view'); + } + + $this->footer(); + } + +//sql_tool begin + function sql_tool() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('sql_model'); + + $data['list'] = $this->sql_model->get_appliable_files(); + + $this->headers('admin'); + $this->load->view('admin/sql_tool/list', $data); + $this->footer(); + + } + +//sql_tool + function sql_new() + { + if ($this->userlevel < 5) show_404(); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('sql', 'SQL', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('admin'); + $this->load->view('admin/sql_tool/new'); + $this->footer(); + } + else + { + $sql = $this->input->post('sql'); + + $this->load->model('sql_model'); + + $this->sql_model->create_sql($sql); + + $this->load->helper('url'); + + redirect('admin/sql_tool'); + } + + } +//sql_tool + + function sql_apply_all() + { + if ($this->userlevel < 5) show_404(); + + $this->load->model('sql_model'); + + $this->sql_model->apply_all_sql(); + + $this->load->helper('url'); + + redirect('admin/sql_tool'); + } +//sql_tool end + +} +//nowhitesp diff --git a/Mourne-CI/application/controllers/alliance.php b/Mourne-CI/application/controllers/alliance.php new file mode 100755 index 0000000..91fe712 --- /dev/null +++ b/Mourne-CI/application/controllers/alliance.php @@ -0,0 +1,22 @@ +headers('alliance'); + + $this->footer(); + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/building.php b/Mourne-CI/application/controllers/building.php new file mode 100755 index 0000000..bbac00c --- /dev/null +++ b/Mourne-CI/application/controllers/building.php @@ -0,0 +1,702 @@ +load->helper('url'); + redirect('building/stats/' .$id); + } + + function stats($slotid = 0) + { + if (!$slotid) + { + $this->load->helper($url); + redirect('village/selected'); + } + + $this->headers('do', $slotid); + + if ($this->building['id'] == 1) + { + $this->load->helper('url'); + redirect('building/build'); + } + + if ($this->building['id'] == 2) + { + //build_in_progress + + $this->headers('build_in_progress'); + + $event = $this->_filter_events('type', 'slotid', $slotid, 0, TRUE); + + $data['event'] = $event; + $data['building'] = $this->building_model->get_building($event['data1']); + + $this->load->view('building/header', $data); + $this->load->view('building/spacer'); + $this->load->view('building/next_event', $data); + $this->load->view('building/stats', $data); + + $this->footer(); + + return; + } + + $this->headers('building', $slotid); + + $data['slotid'] = $slotid; + + $this->load->view('building/stats', $data); + + $this->footer(); + } + + function upgrade($slotid = 0) + { + if (!$slotid) + { + $this->load->helper('url'); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + $event = $this->_filter_events('type', 'slot', $slotid, 1); + + $up['slotid'] = $slotid; + + if ($this->building['next_rank']) + { + $up['slotid'] = $slotid; + + $up['nextrank'] = $this->building_model->get_building( + $this->building['next_rank']); + + $up['upgrade'] = $this->building_model->can_be_upgraded( + $event, + $this->resources, + $up['nextrank'], + $this->villageid); + } + + $this->load->view('building/upgrade', $up); + $this->footer(); + } + + function create($slotid = 0) + { + if (!$slotid) + { + $this->load->helper($url); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + //can create something + if ($this->building['creates']) + { + $events = $this->_filter_events('type', 'all', $slotid, 2); + + $this->load->model('unit_model'); + + $data['unit'] = $this->unit_model->get_unit($this->building['creates']); + + if ($data['unit']['cost_unit']) + $data['costu'] = $this->unit_model->get_unit( + $data['unit']['cost_unit']); + else + $data['costu'] = FALSE; + + $this->load->model('resource_model'); + + //This should be one function + $data['maxunit'] = $this->resource_model->calc_max_unit($data['unit'], + $this->building['num_creates'], + $this->resources); + + $data['maxunit'] = $this->unit_model->calc_max_unit_ev( + $this->building['num_creates'], + $data['maxunit'], + $events); + + if ($events) + { + $d['event'] = $events; + $this->load->view('building/events', $d); + } + + } + + $data['building'] = $this->building; + $this->load->view('building/building_create', $data); + + $this->footer(); + } + + function assign($slotid) + { + if (!$slotid) + { + $this->load->helper($url); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + //have assignments + $this->load->model('assignment_model'); + + $assign = $this->assignment_model->get_assignments($slotid, + $this->villageid, + $this->userid); + + $assign['slotid'] = $slotid; + + $this->load->view('building/assignments', $assign); + + $this->footer(); + } + + function spells($slotid) + { + if (!$slotid) + { + $this->load->helper($url); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + $this->load->model('spell_model'); + + $spell['spells'] = $this->spell_model->get_spells($slotid, + $this->villageid); + + $spell['slotid'] = $slotid; + + $this->load->view('building/spells', $spell); + $this->footer(); + } + + function events($slotid = 0) + { + if (!$slotid) + { + $this->load->helper($url); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + //$this->load->model('event_model'); + //$data['event'] = $this->event_model->get_events($slotid, +// $this->villageid); + + $data['event'] = $this->_filter_events('all', 'slot', $slotid); + + $this->load->view('building/events', $data); + + $this->footer(); + } + + function research($slotid = 0) + { + if (!$slotid) + { + $this->load->helper('url'); + redirect('village/selected'); + } + + $this->headers('building', $slotid); + + $events = $this->_filter_events('type', 'slot', $slotid, 4); + + if (!$events) + { + $this->load->model('technology_model'); + + $data = $this->technology_model->get_researchable($slotid, + $this->villageid); + + $data['slotid'] = $slotid; + + + $this->load->view('building/research', $data); + } + else + { + $this->load->model('technology_model'); + + $data['technology'] = $this->technology_model->get_technology($events[0]['data1']); + + $this->load->view('building/al_research', $data); + } + + $this->footer(); + + } + + function build($slotid = 0) + { + if (!$slotid) + { + $this->load->helper('url'); + redirect('village/selected'); + } + + $this->load->model('building_model'); + + $this->_get_slot_building($slotid); + + $this->headers('build'); + + if ($this->building['id'] == 1) + { + //empty space + + $data['buildings'] = $this->building_model->building_list( + $this->villageid); + + $data['slotid'] = $slotid; + $this->load->view('building/list', $data); + } + else + { + //slot has some building + $this->load->helper('url'); + redirect('building/stats/' . $slotid); + } + + $this->footer(); + } + + function dobuild() + { + $this->load->helper('url'); + + $slotid = $this->input->post('slotid'); + $buildingid = $this->input->post('id'); + + if (!$slotid || !$buildingid) + redirect('village/selected'); + + $this->headers('do'); + + $this->load->model('building_model'); + //$this->load->model('event_model'); + $this->load->model('resource_model'); + + //check if building exists + if (!$this->building_model->is_valid_slot($slotid, $this->villageid)) + { + //display error page + echo "is_valid_slot returned FALSE"; + return; + } + + $building = $this->building_model->get_building($buildingid); + + if (!$this->building_model->check_resources($this->resources, $building)) + { + //display error page + echo "You don't have enough resources"; + return; + } + +/* + //do this matters? maybe it should be removed. + if ($this->event_model->has_event($slotid, $this->villageid)) + { + //display error page + echo "has_event returned TRUE"; + return; + } +*/ +/* this probably aren't needed + if (!$this->building_model->can_build($this->villageid, $buildingid)) + { + //display an error page + echo "can_build returned FALSE"; + return; + } +*/ + + //can be built + if (!$this->building_model->has_req_tech($building['req_tech'], $this->villageid)) + { + echo "Technology requirements not met."; + return; + } + + //add_event + $this->load->helper('event'); + + $ev['type'] = ev_type('build'); + $ev['villageid'] = $this->villageid; + $ev['slotid'] = $slotid; + $ev['time'] = $building['time_to_build']; + $ev['data1'] = $buildingid; + + $this->event_model->add_event($ev); + + //resource substract + $this->resource_model->set_resources($this->resources); + $this->resource_model->substract_resources($building, + $this->villageid); + $this->resource_model->write_resources(); + + //change tile to build in progress + $this->building_model->set_build_in_progress($slotid, $this->villageid); + + $url = 'building/stats/' . $slotid; + redirect($url); + + } + + function docreate($slotid) + { + $this->load->library('form_validation'); + + $this->form_validation->set_rules('create_num', 'Number to create', + 'is_natural_no_zero'); + + $this->load->helper('url'); + $url = 'building/create/' . $slotid; + + $this->headers('do', $slotid); + + if ($this->form_validation->run()) + { + $num_create = $this->input->post('create_num'); + + if (!$num_create) + redirect($url); + + $this->load->model('building_model'); + + $building = $this->building; + + $this->headers('do'); + + if ($building['id'] == 1 || $building['id'] == 2) + { + //TODO show proper error + echo "There isn't any building in that slot"; + return; + } + + if (!$building['creates']) + { + //TODO show proper error + echo "that building can't create units"; + return; + } + + $event = $this->_filter_events('type', 'slot', $slotid, 2); + + $this->load->model('resource_model'); + $res = $this->resources; + + $this->load->model('unit_model'); + $unit = $this->unit_model->get_unit($building['creates']); + + $max = $this->resource_model->calc_max_unit($unit, + $building['num_creates'], + $res); + + $max = $this->unit_model->calc_max_unit_ev($building['num_creates'], + $max, + $event); + + if (!$max) + { + //TODO proper error + echo "You can't make any"; + return; + } + + if ($num_create > $max) + { + //TODO proper error + echo "You can't make that many"; + return; + } + + //add event + $this->load->helper('event'); + + $ev['type'] = ev_type('create'); + $ev['villageid'] = $this->villageid; + $ev['slotid'] = $slotid; + $ev['time'] = ($unit['time_to_create'] * $num_create); + $ev['data1'] = $unit['id']; + $ev['data2'] = $num_create; + + $this->event_model->add_event($ev); + + $this->resource_model->set_resources($this->resources); + $this->resource_model->substract_resources($unit, + $this->villageid, + $num_create); + + $this->resource_model->write_resources(); + + redirect($url); + } + else + { + redirect($url); + } + } + + function doupgrade() + { + $this->headers('do'); + + $this->load->helper('url'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('slotid', 'Slotid', 'is_natural'); + + if ($this->form_validation->run()) + { + $this->load->model('event_model'); + $this->load->model('resource_model'); + $this->load->model('building_model'); + + $slotid = $this->input->post('slotid'); + + $this->headers('do', $slotid); + + $building = $this->building; + + if (!$building['next_rank']) + { + echo "Building doesn't have next rank."; + return; + } + + $next_rank = $this->building_model->get_building($building['next_rank']); + $res = $this->resources; + + + $event = $this->_filter_events('type', 'slot', $slotid, 1); + + $can = $this->building_model->can_be_upgraded($event, $res, $next_rank, + $this->villageid); + + if ($can == 3) + { + //can be upgraded + + $this->load->helper('event'); + + $ev['type'] = ev_type('upgrade'); + $ev['villageid'] = $this->villageid; + $ev['slotid'] = $slotid; + $ev['time'] = $next_rank['time_to_build']; + $ev['data1'] = $next_rank['id']; + $ev['data2'] = $building['id']; + + $this->event_model->add_event($ev); + + $this->resource_model->set_resources($this->resources); + $this->resource_model->substract_resources($next_rank, + $this->villageid); + + $this->resource_model->write_resources(); + + $url = 'building/upgrade/' . $slotid; + redirect($url); + + } + elseif ($can == 1) + { + echo "Village doesn't have the required technology."; + return; + } + elseif ($can == 2) + { + //not enough resources + echo "Not enough resources"; + return; + } + else + { + //upgrading in progress + echo "Upgrade already in progress."; + return; + } + } + else + { + redirect('village/selected'); + } + } + + function doassign() + { + $this->headers('do'); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('num_assign', 'Assigned number', 'is_natural'); + $this->form_validation->set_rules('slotid', 'slotid', 'required|is_natural'); + $this->form_validation->set_rules('assignmentid', 'Assignmentid', + 'required|is_natural'); + + if ($this->form_validation->run()) + { + $assid = $this->input->post('assignmentid'); + $slotid = $this->input->post('slotid'); + $num_assign = $this->input->post('num_assign'); + + $this->load->model('assignment_model'); + + $a = $this->assignment_model->assign_unit($assid, $num_assign, $slotid, $this->resources, + $this->villageid, $this->userid); + + //error handling with return value + if ($a == 1) + { + //no building in that slot + echo "No building in that slot"; + return; + } + + if ($a == 2) + { + //no such assignmentid + echo "No such assignmentid"; + return; + } + + if ($a == 3) + { + //building soesn't have that assignment + echo "Building doesn't have that assignment"; + return; + } + + if ($a == 4) + { + echo "You don't have any units that can be assigned in that slot"; + return; + } + + + $this->load->helper('url'); + redirect('building/assign/' . $slotid); + } + else + { + $this->load->helper('url'); + redirect('village/selected'); + } + } + + function dospell() + { + $this->headers('do'); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('spellid', 'spellid', 'required|is_natural'); + $this->form_validation->set_rules('slotid', 'slotid', 'required|is_natural'); + + if ($this->form_validation->run()) + { + $spellid = $this->input->post('spellid'); + $slotid = $this->input->post('slotid'); + + $this->load->model('spell_model'); + + $a = $this->spell_model->use_spell($spellid, $slotid, $this->resources, + $this->villageid); + + //error handling with return value + if ($a == 1) + { + echo "Building doesn't have that spell"; + return; + } + + if ($a == 2) + { + echo "spell is on cooldown"; + return; + } + + if ($a == 3) + { + echo "Not enough resources"; + return; + } + + + + $this->load->helper('url'); + redirect('building/spells/' . $slotid); + } + else + { + $this->load->helper('url'); + redirect('village/selected'); + } + + } + + function doresearch() + { + $this->load->helper('url'); + + $slotid = $this->input->post('slotid'); + $techid = $this->input->post('id'); + + if (!($slotid || $techid)) + redirect('village/selected'); + + $this->headers('do'); + + $event = $this->_filter_events('type', 'slot', $slotid, 4); + + if ($event) + echo "Already researching."; + + $this->load->model('technology_model'); + + $a = $this->technology_model->do_research($techid, $this->resources, $slotid, + $this->villageid); + + if ($a == 1) + { + echo "Technology ID doesn't exist"; + return; + } + + if ($a == 2) + { + echo "Not enough resources"; + return; + } + + if ($a == 3) + { + echo "Building doesn't have that technology, or you already have it"; + return; + } + + redirect('building/research/' . $slotid); + + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/changelog.php b/Mourne-CI/application/controllers/changelog.php new file mode 100755 index 0000000..616223c --- /dev/null +++ b/Mourne-CI/application/controllers/changelog.php @@ -0,0 +1,78 @@ +load->model('changelog_model'); + + $data['versions'] = $this->changelog_model->get_versions(); + $data['commits'] = $this->changelog_model->get_commits(); + $data['userlevel'] = $this->userlevel; + $data['required_userlevel'] = 4; + + $this->headers(); + $this->load->view('changelog/changelog', $data); + $this->footer(); + } + + function add_new_version() + { + if (!$this->userlevel > 4) + show404(); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('text', 'Text', 'required'); + + if (!$this->form_validation->run()) + { + $this->load->view('changelog/new_version'); + } + else + { + $this->load->model('changelog_model'); + + $text = $this->input->post('text'); + $this->changelog_model->new_version($text); + + $this->load->helper('url'); + redirect('changelog/show'); + } + + } + + function add_new_commit() + { + if (!$this->userlevel > 4) + show404(); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('text', 'Text', 'required'); + + if (!$this->form_validation->run()) + { + $this->load->view('changelog/new_commit'); + } + else + { + $this->load->model('changelog_model'); + + $text = $this->input->post('text'); + $this->changelog_model->new_commit($text); + + $this->load->helper('url'); + redirect('changelog/show'); + } + + } +} + +//nowhitesp diff --git a/Mourne-CI/application/controllers/cron.php b/Mourne-CI/application/controllers/cron.php new file mode 100755 index 0000000..80ed01e --- /dev/null +++ b/Mourne-CI/application/controllers/cron.php @@ -0,0 +1,23 @@ +load->model('ai_model'); + + $a = $this->ai_model->attack(); + + echo $a; + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/forum.php b/Mourne-CI/application/controllers/forum.php new file mode 100755 index 0000000..8ea6a81 --- /dev/null +++ b/Mourne-CI/application/controllers/forum.php @@ -0,0 +1,20 @@ +headers('forum'); + + $this->load->view('forum/notimpl'); + + $this->footer(); + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/gm.php b/Mourne-CI/application/controllers/gm.php new file mode 100755 index 0000000..a53e2b8 --- /dev/null +++ b/Mourne-CI/application/controllers/gm.php @@ -0,0 +1,17 @@ +headers('gm'); + + $this->footer(); + } +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/hero.php b/Mourne-CI/application/controllers/hero.php new file mode 100755 index 0000000..043e285 --- /dev/null +++ b/Mourne-CI/application/controllers/hero.php @@ -0,0 +1,213 @@ +load->helper('url'); + redirect('hero/selected'); + } + + function selected($page = 'stats', $d1 = FALSE, $d2 = FALSE, $d3 = FALSE, $d4 = FALSE) + { + $this->headers('hero'); + + if ($page != 'stats' && $page != 'inventory' && $page != 'talents' && $page != 'spells' && + $page != 'actionbars') + { + $page = 'stats'; + } + + $this->load->view('hero/hero_menu'); + + if ($page == 'stats') + { + $data['hero'] = $this->hero; + + $data['hpp'] = floor(($this->hero['health'] / $this->hero['max_health']) * 100); + $data['mpp'] = floor(($this->hero['mana'] / $this->hero['max_mana']) * 100); + $data['exp'] = floor(($this->hero['experience'] /1000) * 100); + + //STUB! + $data['experience'] = 10000; + + $this->load->view('hero/stats', $data); + } + elseif ($page == 'inventory') + { + $this->load->model('item_model'); + + if ($d1 !== FALSE && $d2 !== FALSE && $d3 !== FALSE && $d4 !== FALSE) + { + $this->item_model->set_hero($this->hero); + + $res['message'] = $this->item_model->swap($d1, $d2, $d3, $d4); + + if ($res['message'] === TRUE) + $this->hero = $this->item_model->get_hero(); + + $d1 = FALSE; + $d2 = FALSE; + //we doesn't care about d3,d4 that isn't used in views + } + + + $data = $this->item_model->get_inventory($this->hero['id']); + + $data['hero'] = $this->hero; + + $data['d1'] = $d1; + $data['d2'] = $d2; + + $res['inventory'] = $this->load->view('hero/inventory', $data, TRUE); + $res['equipment'] = $this->load->view('hero/character', $data, TRUE); + + $this->load->view('hero/inventory_view', $res); + } + elseif ($page == 'talents') + { + } + elseif ($page == 'spells') + { + } + elseif ($page == 'actionbars') + { + } + + $this->footer(); + } + + function create() + { + $this->load->library('form_validation'); + + $this->form_validation->set_rules('name', 'Name', 'required|alpha|callback_chhn'); + $this->form_validation->set_rules('gender', 'Gender', 'required|greater_than[0]|less_than[3]|integer'); + //less than! + $this->form_validation->set_rules('class', 'Class', 'required|integer|greater_than[0]|less_than[10]'); + + if (!$this->form_validation->run()) + { + $this->headers('hero', 1); + + $this->load->view('hero/create'); + + $this->footer(); + } + else + { + $this->load->model('hero_model'); + + $data['name'] = $this->input->post('name'); + $data['gender'] = $this->input->post('gender'); + $data['class'] = $this->input->post('class'); + + $this->hero_model->create($data, $this->userid); + + $this->load->helper('url'); + redirect('hero/selected'); + } + } + + function select() + { + $this->load->model('hero_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('heroid', 'Heroid', 'required'); + + if (!$this->form_validation->run()) + { + $this->headers('hero'); + + $data['heroes'] = $this->hero_model->get_heroes($this->userid); + + $this->load->view('hero/select', $data); + + $this->footer(); + } + else + { + $heroid = $this->input->post('heroid'); + + $this->hero_model->select_hero($heroid, $this->userid); + + $this->load->helper('url'); + redirect('hero/selected'); + } + } + + function delete($id = FALSE) + { + $this->load->helper('url'); + + if (!$id || !is_numeric($id)) + redirect('hero/select'); + + $this->load->model('hero_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('confirm', 'Confirm', 'required|callback_delete_check'); + + if (!$this->form_validation->run()) + { + $data['id'] = $id; + $data['hero'] = $this->hero_model->get_hero($id, $this->userid); + + if (!$data['hero']) + redirect('hero/select'); + + $this->headers('hero'); + + $this->load->view('hero/delete_confirm', $data); + + $this->footer(); + } + else + { + $this->hero_model->delete_hero($id, $this->userid); + + redirect('hero/select'); + } + } + + function addstat() + { + //hero's stat view calls this with a form the hidden field's name is attrid + //1 agi, 2 str, 3 stam, 4 int, 5 spirit + } + + function chhn($name) + { + $this->load->model('hero_model'); + + $a = $this->hero_model->hero_name_is_unique($name); + + if (!$a) + { + $this->form_validation->set_message('chhn', 'Name already taken.'); + return FALSE; + } + else + { + return TRUE; + } + } + + function delete_check($chk) + { + if ($chk == "DELETE") + return TRUE; + + $this->form_validation->set_message('delete_check', 'You have to spell DELETE, exactly, and uppercase.'); + + return FALSE; + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/index.html b/Mourne-CI/application/controllers/index.html new file mode 100755 index 0000000..c942a79 --- /dev/null +++ b/Mourne-CI/application/controllers/index.html @@ -0,0 +1,10 @@ + +
+Directory access is forbidden.
+ + + \ No newline at end of file diff --git a/Mourne-CI/application/controllers/mail.php b/Mourne-CI/application/controllers/mail.php new file mode 100755 index 0000000..8512a6b --- /dev/null +++ b/Mourne-CI/application/controllers/mail.php @@ -0,0 +1,164 @@ +load->helper('url'); + redirect('mail/inbox'); + } + + function inbox() + { + $this->headers('mail'); + + $this->load->model('mail_model'); + + $data['mails'] = $this->mail_model->get_inbox($this->userid, $this->new_mail); + + $this->load->view('mail/inbox', $data); + + $this->footer(); + } + + function compose($id = 0) + { + $this->headers('mail'); + $this->load->model('mail_model'); + $this->load->library('form_validation'); + + $d['draft'] = FALSE; + + if ($id && is_numeric($id)) + { + $d['draft'] = $this->mail_model->get_draft($id, $this->userid); + } + + $this->form_validation->set_rules('name', 'Username', 'required'); + $this->form_validation->set_rules('subject', 'Subject', 'required'); + $this->form_validation->set_rules('message', 'Message', 'required'); + + if (!$this->form_validation->run()) + { + $this->load->view('mail/new', $d); + } + else + { + $send = $this->input->post('send'); + $draft = $this->input->post('draft'); + + $data['name'] = $this->input->post('name'); + $data['subject'] = $this->input->post('subject'); + $data['message'] = $this->input->post('message'); + + if ($send) + { + $this->mail_model->send_message($data, $this->userid); + } + else + { + $this->mail_model->save_draft($data, $this->userid); + } + } + + $this->footer(); + } + + function del_draft($id = 0) + { + if ($id && is_numeric($id)) + { + $this->load->model("mail_model"); + $this->mail_model->delete_draft($id, $this->userid); + } + + $this->load->helper('url'); + redirect('mail/drafts'); + } + + function drafts() + { + $this->load->model('mail_model'); + + $this->headers('mail'); + + $data['mails'] = $this->mail_model->get_drafts($this->userid); + + $this->load->view('mail/drafts', $data); + + $this->footer(); + } + + function read($id = 0) + { + if (!$id || !is_numeric($id)) + { + $this->load->helper('url'); + redirect('mail/inbox'); + } + + $this->load->model('mail_model'); + + $this->headers('mail'); + + $data['mail'] = $this->mail_model->get_mail($id, $this->userid); + + $this->load->view('mail/read', $data); + + $this->footer(); + + } + + function sent() + { + $this->headers('mail'); + + $this->load->model('mail_model'); + + $data['mails'] = $this->mail_model->get_all_sent($this->userid); + + $this->load->view('mail/sent', $data); + + $this->footer(); + } + + function sread($id = 0) + { + if (!$id || !is_numeric($id)) + { + $this->load->helper('url'); + redirect('mail/inbox'); + } + + $this->load->model('mail_model'); + + $this->headers('mail'); + + $data['mail'] = $this->mail_model->get_sent($id, $this->userid); + + $this->load->view('mail/sread', $data); + + $this->footer(); + + } + + function friends() + { + $this->headers('mail'); + + $this->footer(); + } +} +//nowhitesp + + + + + + + diff --git a/Mourne-CI/application/controllers/news.php b/Mourne-CI/application/controllers/news.php new file mode 100755 index 0000000..fc1c9c8 --- /dev/null +++ b/Mourne-CI/application/controllers/news.php @@ -0,0 +1,68 @@ +check_login()) return; + + $this->load->model('news_model'); + + $data['admin'] = FALSE; + + if ($this->userlevel > 3) + { + $data['admin'] = TRUE; + } + + $data['news'] = $this->news_model->get_news($page); + + $this->headers(); + $this->load->view('news/news', $data); + $this->footer(); + } + + public function add() + { + if ($this->userlevel < 3) show_404(); + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('text', 'Text', 'required'); + + if (!$this->form_validation->run()) + { + + $this->load->helper(array('form', 'url')); + + $this->headers(); + $this->load->view('news/add'); + $this->footer(); + } + else + { + $this->load->model('news_model'); + + if ($this->news_model->add_news($this->input->post('text'), $this->username)) + { + $this->load->view('news/add_success'); + } + else + { + $this->load->view('db_error'); + } + } + + } + + public function delete($nid) + { + if (!$this->userlevel < 3) show_404(); + + + + } + +} + +//nowhitesp diff --git a/Mourne-CI/application/controllers/user.php b/Mourne-CI/application/controllers/user.php new file mode 100755 index 0000000..e8b6159 --- /dev/null +++ b/Mourne-CI/application/controllers/user.php @@ -0,0 +1,139 @@ +load->helper(array('form', 'url')); + $this->load->library('form_validation'); + + //is_unique[users.username] + + //xss_validation + + //TODO figure rules out + $this->form_validation->set_rules('username', 'Username', + 'required'); + + //password callback -> $this->input->post('username'), after xss filter + $this->form_validation->set_rules('password', 'Password', + 'required|callback_login_check'); + + if ($this->form_validation->run() == FALSE) + { + $this->load->view('login/login'); + } + else + { + $this->load->helper('url'); + redirect('news/index'); + //$this->load->view('login/success'); + } + } + + function register() + { + $this->load->helper(array('form', 'url')); + $this->load->library('form_validation'); + + //is_unique[users.username] + //xss_clean + $this->form_validation->set_rules('username', 'Username', + 'required|min_length[4]|max_length[32]|callback_register_username_check'); + + $this->form_validation->set_rules('password', 'Password', + 'required|min_length[5]|matches[password_check]'); + + $this->form_validation->set_rules('password_check', 'Password check', 'required'); + $this->form_validation->set_rules('email', 'Email', 'required|valid_email|matches[email_check]'); + $this->form_validation->set_rules('email_check', 'Email_check', 'required'); + //$this->form_validation->set_rules('license', 'License', 'required'); + + if ($this->form_validation->run() == FALSE) + { + $this->load->view('register/register'); + } + else + { + if ($this->register_write()) + { + $this->load->view('register/success'); + } + } + } + + function logout() + { + $this->session->unset_userdata('userid'); + + $this->load->helper('url'); + redirect('user/login'); + + //TODO make it look cool + //$this->load->view('redirect_to_login'); + } + + function register_username_check($attr) + { + $this->load->model('user_model'); + + if ($this->user_model->reg_username_check($attr)) + { + return TRUE; + } + else + { + $this->form_validation->set_message('register_username_check', 'Username already exists!'); + return FALSE; + } + } + + function register_write() + { + $data['username'] = $this->input->post('username'); + $data['password'] = md5($this->input->post('password')); + $data['email'] = $this->input->post('email'); + + $this->load->model('user_model'); + + return $this->user_model->reg_write($data); + } + + function login_check($attr) + { + $data['username'] = $this->input->post('username'); + $data['password'] = md5($attr); + + $this->load->model('user_model'); + + if ($this->user_model->login_check($data)) + { + $this->session->set_userdata('userid', + $this->user_model->get_userid($data['username'])); + + return TRUE; + } + else + { + return FALSE; + } + } + + function settings() + { + $this->headers('settings'); + + + + $this->footer(); + } + +}//login class + +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/controllers/village.php b/Mourne-CI/application/controllers/village.php new file mode 100755 index 0000000..f89fee9 --- /dev/null +++ b/Mourne-CI/application/controllers/village.php @@ -0,0 +1,262 @@ +load->helper('url'); + redirect('village/selected'); + } + + //function for testing, this will be handled when registering, and with npcs + function create_village() + { + $this->load->model('village_model'); + + $this->village_model->create_village($this->userid, $this->username); + } + + function selected() + { + $this->load->model('village_model'); + + $this->headers('village'); + + $build['buildings'] = $this->village_model->get_buildings($this->villageid); + + $event['event'] = $this->_filter_events('next', 'all'); + + $this->load->view('village/next_event', $event); + $this->load->view('village/grid', $build); + $this->footer(); + } + + function map($x = FALSE, $y = FALSE) + { + $this->load->model('map_model'); + $action = $this->input->post('action'); + + if ($action == 'xy') + { + $px = $this->input->post('x'); + $py = $this->input->post('y'); + + if (is_numeric($px) && is_numeric($py)) + { + $x = $px; + $y = $py; + } + + } + elseif ($action == 'name') + { + $name = $this->input->post('name'); + + $rep = array(';', "\"", "'", ',', '(', ')'); + + $name = str_replace($rep, ' ', $name); + + if ($name) + { + $co = $this->map_model->get_village_by_name($name); + + if ($co) + { + $x = $co['X']; + $y = $co['Y']; + } + } + } + + $this->load->model('map_model'); + + if (!$x && !$y) + { + $coords = $this->map_model->get_village_coords($this->villageid); + $x = $coords['X']; + $y = $coords['Y']; + } + else + { + if ($x < 7) + $x = 7; + + if ($y < 7) + $y = 7; + + if ($x > 235) + $x = 235; + + if ($y > 235) + $y = 235; + } + + $data['x'] = $x; + $data['y'] = $y; + $data['map'] = $this->map_model->get_map($x, $y); + + $this->headers('village'); + + $this->load->view('village/map', $data); + + $this->footer(); + } + + function units() + { + $this->load->model('unit_model'); + + $data['units'] = $this->unit_model->get_village_units($this->villageid); + + $this->headers('village'); + + $this->load->view('village/units', $data); + + $this->footer(); + } + + function log($action = 'list', $id = 0) + { + if ($action != 'list' && $action != 'view' && $action != 'delete') + $action = 'list'; + + if (!is_numeric($id)) + { + $action = 'list'; + $id = 0; + } + + $this->load->model('log_model'); + + if ($action == 'list') + { + $this->headers('village'); + + $data['logs'] = $this->log_model->get_combat_logs($this->villageid); + $this->load->view('village/log/list', $data); + + $this->footer(); + } + + if ($action == 'view') + { + $this->headers('village'); + + $data['log'] = $this->log_model->get_combat_log($id, $this->villageid); + $this->load->view('village/log/combat', $data); + + $this->footer(); + } + + if ($action == 'delete') + { + $this->log_model->delete_combat_log($id, $this->villageid); + + $this->load->helper('url'); + redirect('village/log'); + } + } + + function select() + { + $this->load->model('village_model'); + $this->load->library('form_validation'); + + $this->form_validation->set_rules('id', 'ID', 'is_natural|required'); + + if (!$this->form_validation->run()) + { + $this->headers('village'); + + $data['villages'] = $this->village_model->get_villages($this->userid); + + $this->load->view('village/select', $data); + + $this->footer(); + } + else + { + $id = $this->input->post('id'); + + $this->village_model->select_village($id, $this->userid); + + $this->load->helper('url'); + redirect('village/selected'); + } + } + + function events() + { + $this->headers('village'); + + $data['event'] = $this->_filter_events('all', 'all'); + + $this->load->view('village/events', $data); + + $this->footer(); + } + + function settings($id = 0) + { + $this->load->model('village_model'); + + if (!is_numeric($id) || !$id) + { + $this->load->heper('url'); + redirect('village/selected'); + } + + $village = $this->village_model->get_village($id); + + if ($village['userid'] != $this->userid) + { + $this->load->heper('url'); + redirect('village/selected'); + } + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('name', 'Name', + 'required|alpha|is_unique[ai_villages.name]'); + + if (!$this->form_validation->run()) + { + $this->headers('village'); + + $data['id'] = $id; + $data['village'] = $village; + + $this->load->view('village/settings', $data); + $this->footer(); + } + else + { + $data['id'] = $id; + $name = $this->input->post('name'); + $data['ai'] = $this->input->post('ai'); + + $data['name'] = ucfirst(strtolower($name)); + + $this->village_model->apply_settings($data); + + $this->load->helper('url'); + redirect('village/select'); + } + } + + function event_update() + { + //TODO for ajax, but maybe it will be solved with APE + } + + function list_all() + { + } + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/core/MO_Controller.php b/Mourne-CI/application/core/MO_Controller.php new file mode 100755 index 0000000..90d453a --- /dev/null +++ b/Mourne-CI/application/core/MO_Controller.php @@ -0,0 +1,430 @@ +weather = FALSE; + $this->resources = FALSE; + $this->hero = FALSE; + + $this->_manage_session($page); + } + + public function _manage_session($page) + { + $this->userid = 0; + + //this should be solved with db! +// if (!$this->session->userdata('language')) +// $this->session->set_userdata('language', 'english'); + +// $this->language = $this->session->userdata('language'); + + $this->language = 'english'; + + if ($this->session->userdata('userid')) + $this->userid = $this->session->userdata('userid'); + + $this->load->model('mo_common_model'); + + if ($this->userid) + { + $data = $this->mo_common_model->get_userdata($this->userid); + + $this->userlevel = $data['userlevel']; + $this->username = $data['username']; + $this->new_mail = $data['new_mail']; + + if ($page == 'village') + { + $mdata = $this->mo_common_model->get_village_data($this->userid); + + $this->villageid = $mdata['id']; + $this->villagename = $mdata['name']; + $this->new_log = $mdata['new_log']; + + $this->village_data = $mdata; + } + + if ($page == 'hero') + { + $this->hero = $this->mo_common_model->get_hero_data($this->userid); + } + } + } + + public function check_login() + { + if ($this->userid == 0) + { + $this->load->helper('url'); + redirect('user/login'); + } + + return TRUE; + } + + public function headers($page = 'village', $slotid = 0) + { + $data['username'] = $this->username; + $data['userid'] = $this->userid; + $data['userlevel'] = $this->userlevel; + $data['newmail'] = $this->new_mail; + $data['page'] = $page; + + if ($page != 'hero') + { + $data['villagename'] = $this->villagename; + $data['newlog'] = $this->new_log; + + if ($page == 'building' || $page == 'village' || $page == 'build' || $page == 'build_in_progress' || + $page == 'mail') + { + $this->_update(); + } + + //this has to be done like this, since this function will redirect if nothing in the slot + if ($page == 'building') + $this->_get_slot_building($slotid); + + if ($page != 'do') + { + $data['weather'] = $this->weather; + $data['resources'] = $this->_prep_res_js(); + $this->load->view('parts/header', $data); + $this->load->view('menu', $data); + $this->load->view('parts/js_res', $data); + } + + if ($page == 'building' || $page == 'village' || $page == 'build' || $page == 'build_in_progress' || + $page == 'mail') + { + $res['res'] = $this->resources; + $this->load->view('village/resources', $res); + } + + if ($page == 'mail') + { + $this->load->view('mail/menu'); + } + + if ($page == 'village') + { + $this->load->view('village/menu'); + } + + if ($page == 'building') + { + $data['building'] = $this->building; + $data['slotid'] = $slotid; + + $this->load->view('building/header', $data); + $this->load->view('building/menu', $data); + } + + if ($page == 'do') + { + $this->_update(); + + if ($slotid) + $this->_get_slot_building($slotid); + } + } + elseif ($page == 'hero') + { + if (!$this->hero && !$slotid) + { + $this->load->helper('url'); + redirect('hero/create'); + return; + } + + $data['hero'] = $this->hero; + $data['weather'] = FALSE; + $data['resources'] = FALSE; + $this->load->view('parts/header', $data); + $this->load->view('menu', $data); + $this->load->view('hero/menu', $data); + } + } + + public function _get_slot_building($slotid = 0) + { + if (!$slotid) + return; + + if ($this->building) + return; + + $this->load->model('building_model'); + $this->building = $this->building_model->get_slot_building($slotid, $this->villageid); + + //this is commented out, because get_slot_building cannot return FALSE lol + // if (!$this->building) + // { + // $this->load->helper('url'); + // redirect('village/selected'); + //} + } + + public function _get_resources() + { + if ($this->resources) + return; + + $this->load->model('resource_model'); + $this->resources = $this->resource_model->get_resources($this->villageid); + } + + public function _update() + { + $this->load->model('event_model'); + + if ($this->resources || $this->events || $this->weather) + return; + + //event model returns resources, and events, and weather + $data = $this->event_model->update($this->village_data, TRUE); + + $this->resources = $data['resources']; + $this->events = $data['events']; + $this->weather = $data['weather']; + } + + public function footer() + { + $this->load->view('parts/footer'); + } + + /* + filter events, based on type and filter, and order it ASC + type -> 'next', 'type', 'all' + if type == 'type' you have to provide an event type + filter -> 'all', 'slot' + if filter == 'slot' you have to provide slotid + next -> TRUE/FALSE + only return the next event, this is here, so every type can be asked to return the next one + this is primarily here, so when events like EVENT_BUILD needed, since there aren't going to be 2 + */ + + public function _filter_events($type, $filter, $slotid = 0, $ev_type = 0, $next = FALSE) + { + //means no events + if (!$this->events) + return FALSE; + + $data = FALSE; + + if ($type == 'all') + { + if ($filter == 'slot') + { + foreach ($this->events as $row) + { + if ($row['slotid'] == $slotid) + { + $data[] = $row; + } + } + } + else + { + $data = $this->events; + } + } + + if ($type == 'type') + { + if ($filter == 'all') + { + foreach ($this->events as $row) + { + if ($row['type'] == $ev_type) + { + $data[] = $row; + } + } + } + else + { + foreach ($this->events as $row) + { + if ($row['type'] == $ev_type && $row['slotid'] == $slotid) + { + $data[] = $row; + } + } + } + } + + if ($type == 'next') + { + if ($filter == 'all') + { + $last_end = 99999999999; + $smallest = FALSE; + foreach ($this->events as $row) + { + if ($row['end'] < $last_end) + { + $last_end = $row['end']; + $smallest = $row; + } + } + + return $smallest; + } + else + { + $last_end = 99999999999; + $smallest = FALSE; + foreach ($this->events as $row) + { + if ($row['end'] < $last_end && $row['slotid'] == $slotid) + { + $last_end = $row['end']; + $smallest = $row; + } + } + + return $smallest; + } + } + + //order it + if ($data) + { + $last_end = 99999999999; + $last['id'] = FALSE; + $smallest = FALSE; + + for ($i = 0; $i < sizeof($data); $i++) + { + foreach ($data as $row) + { + //accounting for events ending at the same time + if ($row['end'] <= $last_end && $last['id'] != $row['id']) + { + $smallest = $row; + } + } + + $ret[] = $smallest; + $last_end = $smallest['end']; + $last = $smallest; + } + + if (!$next) + return $ret; + else + return $ret[0]; + } + + return FALSE; + } + + function _prep_res_js() + { + if (!$this->resources) + return FALSE; + + $res = $this->resources; + + //determining which have the lowest rate + $a[] = $res['food']; + $a[] = $res['wood']; + $a[] = $res['stone']; + $a[] = $res['iron']; + $a[] = $res['mana']; + + $last = $a[0]; + $index = 0; + + for ($i = 0; $i < 5; $i++) + { + if ($a[$i] < $last) + { + $last = $a[$i]; + $index = $i; + } + } + + //comberting back numerical index + switch ($index) + { + case 0: + $s_index = 'food'; + break; + case 1: + $s_index = 'wood'; + break; + case 2: + $s_index = 'stone'; + break; + case 3: + $s_index = 'iron'; + break; + case 4: + $s_index = 'mana'; + break; + default: + $s_index = 'food'; + break; + } + + //calculating the rate it brings 1 resource + $num_tick = 0.1; + $rate = 'rate_' . $s_index; + + while (TRUE) + { + if (($res[$rate] * $num_tick) > 1) + break; + + $num_tick += 0.1; + } + + $res['rate_food'] *= $num_tick; + $res['rate_wood'] *= $num_tick; + $res['rate_stone'] *= $num_tick; + $res['rate_iron'] *= $num_tick; + $res['rate_mana'] *= $num_tick; + + $res['timer_tick'] = (1000 * $num_tick); + + return $res; + } + +}//MO_Controller +//nowhitesp + + + + + + + + + + diff --git a/Mourne-CI/application/core/MO_Model.php b/Mourne-CI/application/core/MO_Model.php new file mode 100755 index 0000000..da7ff99 --- /dev/null +++ b/Mourne-CI/application/core/MO_Model.php @@ -0,0 +1,1523 @@ +resources = FALSE; + $this->resources_changed = FALSE; + $this->modifiers_changed = FALSE; + $this->score = 0; + + $this->unitq_initialized = FALSE; + $this->unitq_village_units = FALSE; + $this->unitq_changes = FALSE; + $this->unitq_units = FALSE; + + $this->villageid = FALSE; + $this->userid = FALSE; + + $this->hero = FALSE; + $this->hero_stat_changed = FALSE; + $this->hero_exp_changed = FALSE; + $this->hero_hpmp_changed = FALSE; + } + +/* + This doesn't work with codeigniter, gives a bunch of errors. + function __destruct() + { + $this->write_resources(); + } +*/ + //event + function add_event($data) + { + if (!isset($data['data1'])) + $data['data1'] = 0; + if (!isset($data['data2'])) + $data['data2'] = 0; + + $end = (time() + $data['time']); + + $sql = "INSERT INTO events + VALUES(default, + '" . $data['villageid'] . "', + '" . $data['slotid'] . "', + '" . $data['type'] . "', + '$end', + '" . $data['data1'] . "', + '" . $data['data2'] . "')"; + + $this->db->query($sql); + } + + //event end + + //resources + function check_resources($res, $data) + { + if ($res['food'] >= $data['cost_food'] && + $res['wood'] >= $data['cost_wood'] && + $res['stone'] >= $data['cost_stone'] && + $res['iron'] >= $data['cost_iron'] && + $res['mana'] >= $data['cost_mana']) + return TRUE; + + return FALSE; + } + + function set_resources($res) + { + $this->resources = $res; + } + + //adds modifiers from the building + function add_modifiers($id, $villageid, $type = 'building', $num = 1, $noquery = FALSE) + { + if (!$this->resources) + $this->get_resources($villageid); + + if (!$noquery) + { + if ($type == 'building') + $sql = "SELECT * FROM buildings WHERE id='$id'"; + + if ($type == 'unit') + $sql = "SELECT * FROM units WHERE id='$id'"; + + if ($type == 'assignment') + $sql = "SELECT * FROM assignments WHERE id='$id'"; + + if ($type == 'spell') + $sql = "SELECT * FROM spells WHERE id='$id'"; + + if ($type == 'technology') + $sql = "SELECT * FROM technologies WHERE id='$id'"; + + if ($type == 'weather') + $sql = "SELECT * FROM weathers WHERE id='$id'"; + + $q = $this->db->query($sql); + $data = $q->row_array(); + } + else + { + $data = $id; + } + + //if everything is 0 don't do anything + if ($type == 'building' || $type == 'assignment' || $type == 'spell' || + $type == 'technology') + if (!($data['mod_max_food'] || $data['mod_max_wood'] || $data['mod_max_stone'] || + $data['mod_max_iron'] || $data['mod_max_mana'] || $data['mod_rate_food'] || + $data['mod_rate_wood'] || $data['mod_rate_stone'] || $data['mod_rate_iron'] || + $data['mod_rate_mana'] || $data['mod_percent_food'] || $data['mod_percent_wood'] || + $data['mod_percent_stone'] || $data['mod_percent_iron'] || $data['mod_percent_mana'])) + return; + + if ($type == 'weather') + if (!($data['mod_max_food'] || $data['mod_max_wood'] || $data['mod_max_stone'] || + $data['mod_max_iron'] || $data['mod_max_mana'] || $data['mod_percent_food'] || + $data['mod_percent_wood'] || $data['mod_percent_stone'] || $data['mod_percent_iron'] || + $data['mod_percent_mana'])) + return; + + if ($type == 'unit') + if (!($data['mod_rate_food'] || $data['mod_rate_wood'] || + $data['mod_rate_stone'] || $data['mod_rate_iron'] || + $data['mod_rate_mana'])) + return; + + //this is sure at this point + $this->modifiers_changed = TRUE; + $res = $this->resources; + + + if ($type == 'building' || $type == 'assignment' || $type == 'spell' || $type == 'technology') + { + $res['max_food'] += ($data['mod_max_food'] * $num); + $res['max_wood'] += ($data['mod_max_wood'] * $num); + $res['max_stone'] += ($data['mod_max_stone'] * $num); + $res['max_iron'] += ($data['mod_max_iron'] * $num); + $res['max_mana'] += ($data['mod_max_mana'] * $num); + + $res['rate_nm_food'] += ($data['mod_rate_food'] * $num); + $res['rate_nm_wood'] += ($data['mod_rate_wood'] * $num); + $res['rate_nm_stone'] += ($data['mod_rate_stone'] * $num); + $res['rate_nm_iron'] += ($data['mod_rate_iron'] * $num); + $res['rate_nm_mana'] += ($data['mod_rate_mana'] * $num); + + $res['percent_food'] += ($data['mod_percent_food'] * $num); + $res['percent_wood'] += ($data['mod_percent_wood'] * $num); + $res['percent_stone'] += ($data['mod_percent_stone'] * $num); + $res['percent_iron'] += ($data['mod_percent_iron'] * $num); + $res['percent_mana'] += ($data['mod_percent_mana'] * $num); + } + + if ($type == 'unit') + { + $res['rate_nm_food'] += ($data['mod_rate_food'] * $num); + $res['rate_nm_wood'] += ($data['mod_rate_wood'] * $num); + $res['rate_nm_stone'] += ($data['mod_rate_stone'] * $num); + $res['rate_nm_iron'] += ($data['mod_rate_iron'] * $num); + $res['rate_nm_mana'] += ($data['mod_rate_mana'] * $num); + } + + //has to be done this way, because this doesn't have flat rate modifiers + //so adding it to spells (etc) above could error out + if ($type == 'weather') + { + $res['max_food'] += ($data['mod_max_food'] * $num); + $res['max_wood'] += ($data['mod_max_wood'] * $num); + $res['max_stone'] += ($data['mod_max_stone'] * $num); + $res['max_iron'] += ($data['mod_max_iron'] * $num); + $res['max_mana'] += ($data['mod_max_mana'] * $num); + + $res['percent_food'] += ($data['mod_percent_food'] * $num); + $res['percent_wood'] += ($data['mod_percent_wood'] * $num); + $res['percent_stone'] += ($data['mod_percent_stone'] * $num); + $res['percent_iron'] += ($data['mod_percent_iron'] * $num); + $res['percent_mana'] += ($data['mod_percent_mana'] * $num); + } + + $res['rate_food'] = ($res['rate_nm_food'] * ($res['percent_food'] / 100)); + $res['rate_wood'] = ($res['rate_nm_wood'] * ($res['percent_wood'] / 100)); + $res['rate_stone'] = ($res['rate_nm_stone'] * ($res['percent_stone'] / 100)); + $res['rate_iron'] = ($res['rate_nm_iron'] * ($res['percent_iron'] / 100)); + $res['rate_mana'] = ($res['rate_nm_mana'] * ($res['percent_mana'] / 100)); + + $this->resources = $res; + + //add score + if ($type == 'building' || $type == 'unit' || $type == 'technology') + { + $this->score += ($data['score'] * $num); + } + } + + function substract_modifiers($id, $villageid, $type = 'building', $num = 1, $noquery = FALSE) + { + if (!$this->resources) + $this->get_resources($villageid); + + if (!$noquery) + { + if ($type == 'building') + $sql = "SELECT * FROM buildings WHERE id='$id'"; + + if ($type == 'unit') + $sql = "SELECT * FROM units WHERE id='$id'"; + + if ($type == 'assignment') + $sql = "SELECT * FROM assignments WHERE id='$id'"; + + if ($type == 'spell') + $sql = "SELECT * FROM spells WHERE id='$id'"; + + if ($type == 'technology') + $sql = "SELECT * FROM technologies WHERE id='$id'"; + + if ($type == 'weather') + $sql = "SELECT * FROM weathers WHERE id='$id'"; + + $q = $this->db->query($sql); + $data = $q->row_array(); + } + else + { + $data = $id; + } + + //if everything is 0 don't do anything + if ($type == 'building' || $type == 'assignment' || $type == 'spell' || + $type == 'technology') + if (!($data['mod_max_food'] || $data['mod_max_wood'] || $data['mod_max_stone'] || + $data['mod_max_iron'] || $data['mod_max_mana'] || $data['mod_rate_food'] || + $data['mod_rate_wood'] || $data['mod_rate_stone'] || $data['mod_rate_iron'] || + $data['mod_rate_mana'] || $data['mod_percent_food'] || $data['mod_percent_wood'] || + $data['mod_percent_stone'] || $data['mod_percent_iron'] || $data['mod_percent_mana'])) + return; + + if ($type == 'weather') + if (!($data['mod_max_food'] || $data['mod_max_wood'] || $data['mod_max_stone'] || + $data['mod_max_iron'] || $data['mod_max_mana'] || $data['mod_percent_food'] || + $data['mod_percent_wood'] || $data['mod_percent_stone'] || $data['mod_percent_iron'] || + $data['mod_percent_mana'])) + return; + + if ($type == 'unit') + if (!($data['mod_rate_food'] || $data['mod_rate_wood'] || + $data['mod_rate_stone'] || $data['mod_rate_iron'] || + $data['mod_rate_mana'])) + return; + + //this is sure at this point + $this->modifiers_changed = TRUE; + $res = $this->resources; + + if ($type == 'building' || $type == 'assignment' || $type == 'spell' || $type == 'technology') + { + $res['max_food'] -= ($data['mod_max_food'] * $num); + $res['max_wood'] -= ($data['mod_max_wood'] * $num); + $res['max_stone'] -= ($data['mod_max_stone'] * $num); + $res['max_iron'] -= ($data['mod_max_iron'] * $num); + $res['max_mana'] -= ($data['mod_max_mana'] * $num); + + $res['rate_nm_food'] -= ($data['mod_rate_food'] * $num); + $res['rate_nm_wood'] -= ($data['mod_rate_wood'] * $num); + $res['rate_nm_stone'] -= ($data['mod_rate_stone'] * $num); + $res['rate_nm_iron'] -= ($data['mod_rate_iron'] * $num); + $res['rate_nm_mana'] -= ($data['mod_rate_mana'] * $num); + + $res['percent_food'] -= ($data['mod_percent_food'] * $num); + $res['percent_wood'] -= ($data['mod_percent_wood'] * $num); + $res['percent_stone'] -= ($data['mod_percent_stone'] * $num); + $res['percent_iron'] -= ($data['mod_percent_iron'] * $num); + $res['percent_mana'] -= ($data['mod_percent_mana'] * $num); + } + + if ($type == 'unit') + { + $res['rate_nm_food'] -= ($data['mod_rate_food'] * $num); + $res['rate_nm_wood'] -= ($data['mod_rate_wood'] * $num); + $res['rate_nm_stone'] -= ($data['mod_rate_stone'] * $num); + $res['rate_nm_iron'] -= ($data['mod_rate_iron'] * $num); + $res['rate_nm_mana'] -= ($data['mod_rate_mana'] * $num); + } + + //has to be done this way, because this doesn't have flat rate modifiers + //so adding it to spells (etc) above could error out + if ($type == 'weather') + { + $res['max_food'] -= ($data['mod_max_food'] * $num); + $res['max_wood'] -= ($data['mod_max_wood'] * $num); + $res['max_stone'] -= ($data['mod_max_stone'] * $num); + $res['max_iron'] -= ($data['mod_max_iron'] * $num); + $res['max_mana'] -= ($data['mod_max_mana'] * $num); + + $res['percent_food'] -= ($data['mod_percent_food'] * $num); + $res['percent_wood'] -= ($data['mod_percent_wood'] * $num); + $res['percent_stone'] -= ($data['mod_percent_stone'] * $num); + $res['percent_iron'] -= ($data['mod_percent_iron'] * $num); + $res['percent_mana'] -= ($data['mod_percent_mana'] * $num); + } + + $res['rate_food'] = ($res['rate_nm_food'] * ($res['percent_food'] / 100)); + $res['rate_wood'] = ($res['rate_nm_wood'] * ($res['percent_wood'] / 100)); + $res['rate_stone'] = ($res['rate_nm_stone'] * ($res['percent_stone'] / 100)); + $res['rate_iron'] = ($res['rate_nm_iron'] * ($res['percent_iron'] / 100)); + $res['rate_mana'] = ($res['rate_nm_mana'] * ($res['percent_mana'] / 100)); + + $this->resources = $res; + + //add score + if ($type == 'building' || $type == 'unit' || $type == 'technology') + { + $this->score -= ($data['score'] * $num); + } + } + + //substractes resources, $data has to have cost_* fields! + function substract_resources($data, $villageid = 0, $num = 1) + { + //can only happen if not called from events, but shouldn't + if (!$this->resources) + { + $this->get_resources($villageid); + $this->update_resources(); + //$this->_create_sql_debug('sub_resources got called wo $this->resources!'); + } + + $res = $this->resources; + + $res['food'] -= ($data['cost_food'] * $num); + $res['wood'] -= ($data['cost_wood'] * $num); + $res['stone'] -= ($data['cost_stone'] * $num); + $res['iron'] -= ($data['cost_iron'] * $num); + $res['mana'] -= ($data['cost_mana'] * $num); + + if ($res['food'] < 0 || $res['wood'] < 0 || $res['stone'] < 0 || + $res['iron'] < 0 || $res['mana'] < 0) + return FALSE; + + $this->resources = $res; + $this->resources_changed = TRUE; + + return TRUE; + } + +/* + //probably nothing uses it TODO remove + function set_resources($data, $villageid) + { + $sql = "UPDATE resources + SET food='" . $data['food'] . "', + wood='" . $data['wood'] . "', + stone='" . $data['stone'] . "', + iron='" . $data['iron'] . "', + mana='" . $data['mana'] . "' + WHERE villageid='$villageid'"; + + $this->db->query($sql); + } +*/ + //despite the name it updates the resources first, then returns them. + function get_resources($vid) + { + //to not break existing functionality TODO remove returning + if ($this->resources) + return $this->resources; + + //getting resources + $sql = "SELECT * FROM resources WHERE villageid='$vid'"; + $q = $this->db->query($sql); + + $this->resources = $q->row_array(); + + //to not break existing functions, should be removed + return $this->resources; + } + + function update_resources($time = FALSE) + { + if ($time === FALSE) + $time = time(); + + $res = $this->resources; + + //if already at maximum + //we still have to update last_time, because it will screw up things. + if (($res['food'] == $res['max_food']) && + ($res['wood'] == $res['max_wood']) && + ($res['stone'] == $res['max_stone']) && + ($res['iron'] == $res['max_iron']) && + ($res['mana'] == $res['max_mana'])) + { + //do not set $this->resources_changed here, so write only updates the time in the db + $this->resources['last_updated'] = $time; + return; + } + + $ticks = ($time - $res['last_updated']); + + //if more than one event end at the same time this could happen + if (!$ticks) + return; + + $res['food'] += ($res['rate_food'] * $ticks); + $res['wood'] += ($res['rate_wood'] * $ticks); + $res['stone'] += ($res['rate_stone'] * $ticks); + $res['iron'] += ($res['rate_iron'] * $ticks); + $res['mana'] += ($res['rate_mana'] * $ticks); + + //check if over the limit + if ($res['food'] > $res['max_food']) + $res['food'] = $res['max_food']; + if ($res['wood'] > $res['max_wood']) + $res['wood'] = $res['max_wood']; + if ($res['stone'] > $res['max_stone']) + $res['stone'] = $res['max_stone']; + if ($res['iron'] > $res['max_iron']) + $res['iron'] = $res['max_iron']; + if ($res['mana'] > $res['max_mana']) + $res['mana'] = $res['max_mana']; + + $res['last_updated'] = $time; + + //update the db + $this->resources_changed = TRUE; + $this->resources = $res; + } + + function write_resources() + { + //we only have to update last_time + if (!$this->resources_changed && !$this->modifiers_changed) + { + $time = time(); + $sql = "UPDATE resources + SET last_updated='" . $this->resources['last_updated'] . "' + WHERE villageid='" . $this->resources['villageid'] . "'"; + + $this->db->query($sql); + + return; + } + + $res = $this->resources; + + if ($this->modifiers_changed) + { + $sql = "UPDATE resources + SET food='" . $res['food'] . "', + wood='" . $res['wood'] . "', + stone='" . $res['stone'] . "', + iron='" . $res['iron'] . "', + mana='" . $res['mana'] . "', + last_updated='" . $res['last_updated'] . "', + max_food = '" . $res['max_food'] . "', + max_wood = '" . $res['max_wood'] . "', + max_stone = '" . $res['max_stone'] . "', + max_iron = '" . $res['max_iron'] . "', + max_mana = '" . $res['max_mana'] . "', + rate_nm_food = '" . $res['rate_nm_food'] . "', + rate_nm_wood = '" . $res['rate_nm_wood'] . "', + rate_nm_stone = '" . $res['rate_nm_stone'] . "', + rate_nm_iron = '" . $res['rate_nm_iron'] . "', + rate_nm_mana = '" . $res['rate_nm_mana'] . "', + rate_food = '" . $res['rate_food'] . "', + rate_wood = '" . $res['rate_wood'] . "', + rate_stone = '" . $res['rate_stone'] . "', + rate_iron = '" . $res['rate_iron'] . "', + rate_mana = '" . $res['rate_mana'] . "', + percent_food = '" . $res['percent_food'] . "', + percent_wood = '" . $res['percent_wood'] . "', + percent_stone = '" . $res['percent_stone'] . "', + percent_iron = '" . $res['percent_iron'] . "', + percent_mana = '" . $res['percent_mana'] . "' + WHERE villageid='" . $res['villageid'] . "'"; + + $this->db->query($sql); + } + + if ($this->resources_changed && !$this->modifiers_changed) + { + //update the db + $sql = "UPDATE resources + SET food='" . $res['food'] . "', + wood='" . $res['wood'] . "', + stone='" . $res['stone'] . "', + iron='" . $res['iron'] . "', + mana='" . $res['mana'] . "', + last_updated='" . $res['last_updated'] . "' + WHERE villageid='" . $res['villageid'] . "'"; + + $this->db->query($sql); + } + + if ($this->score) + { + $sql = "UPDATE villages + SET score = score + '" . $this->score . "' + WHERE id='" . $this->resources['villageid'] . "'"; + + $this->db->query($sql); + } + } + + //resources end + + //unit functions + + //Resource system have to be initialized! + + function unitq_initialize($villageid, $userid = FALSE, $data = FALSE) + { + if ($this->unitq_initialized) + return; + + $this->villageid = $villageid; + + //if we don't know it query it + if (!$userid) + { + $sql = "SELECT userid FROM villages WHERE id='$villageid'"; + + $q = $this->db->query($sql); + + $res = $q->row_array(); + + $this->userid = $res['userid']; + } + else + $this->userid = $userid; + + //if we had to query units for some reason don't query it again + if (!$data) + { + $sql = "SELECT * FROM village_units WHERE villageid='$villageid'"; + + $q = $this->db->query($sql); + + $this->unitq_village_units = $q->result_array(); + } + else + $this->unitq_village_units = $q->result_array(); + + //getting unitdata + $sql = "SELECT * FROM units"; + + $q = $this->db->query($sql); + + $this->unitq_units = $q->result_array(); + + $this->unitq_initialized = TRUE; + } + + function unitq_change($action, $unitid, $num, $nomod = FALSE) + { + if (!$this->unitq_initialized) + return; + + //getting unitdata + foreach ($this->unitq_units as $row) + { + if ($row['id'] == $unitid) + { + $unitd = $row; + break; + } + } + + //error + if (!$unitd) + return; + + $index = FALSE; + + //finding if that type of unit is in the village + if ($this->unitq_village_units) + { + for ($i = 0; $i < sizeof($this->unitq_village_units); $i++) + { + if ($this->unitq_village_units[$i]['unitid'] == $unitid) + { + $index = $i; + break; + } + } + } + + $data['id'] = $unitid; + + if ($action == '+') + { + if ($index !== FALSE) + $data['unitcount'] = ($this->unitq_village_units[$index]['unitcount'] + $num); + else + $data['unitcount'] = $num; + + if (!$nomod) + $this->substract_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + + if ($action == '-') + { + //this expression doesn't have any mean if we don't have that type of unit + if ($index !== FALSE) + { + $data['unitcount'] = ($this->unitq_village_units[$index]['unitcount'] - $num); + + if ($data['unitcount'] < 0) + { + //adding -1 means substracting it + $num += $data['unitcount']; + $data['unitcount'] = 0; + } + + if (!$nomod) + $this->add_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + } + + if ($action == '+-') + { + if ($index !== FALSE) + $data['unitcount'] = ($this->unitq_village_units[$index]['unitcount'] + $num); + else + $data['unitcount'] = $num; + + if ($num > 0) + { + if (!$nomod) + $this->substract_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + else + { + if (!$nomod) + $this->add_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + } + + if ($action == '=') + { + if ($index !== FALSE) + $data['unitcount'] = $num; + + $number = $this->unitq_village_units[$index]['unitcount'] - $num; + + if ($num > 0) + { + if (!$nomod) + $this->add_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + else + { + if (!$nomod) + $this->substract_modifiers($unitd, $this->villageid, 'unit', $num, TRUE); + } + } + + //error + if (!isset($data['unitcount'])) + return; + + $indexc = FALSE; + + //finding the index which contains our unit + if ($this->unitq_changes) + { + for ($i = 0; $i < sizeof($this->unitq_changes); $i++) + { + if ($this->unitq_changes[$i]['id'] == $unitid) + { + $indexc = $i; + break; + } + } + } + + if ($indexc !== FALSE) + $this->unitq_changes[$indexc]['unitcount'] = $data['unitcount']; + else + $this->unitq_changes[] = array('id' => $data['id'], 'unitcount' => $data['unitcount']); + + } + + function unitq_get_units() + { + return $this->unitq_units; + } + + function unitq_get_village_units() + { + $data = $this->unitq_village_units; + + if ($this->unitq_changes) + { + foreach ($this->unitq_changes as $row) + { + for ($i = 0; $i < sizeof($data); $i++) + { + if ($row['id'] == $data[$i]['unitid']) + $data[$i]['unitcount'] = $row['unitcount']; + } + } + } + + return $data; + } + + //write changes to db + function unitq_write() + { + if (!$this->unitq_initialized) + return; + + if (!$this->unitq_changes) + return; + + foreach ($this->unitq_changes as $row) + { + $vu = FALSE; + + //searching for village_units's row + foreach ($this->unitq_village_units as $vurow) + { + if ($row['id'] == $vurow['unitid']) + { + $vu = $vurow; + break; + } + } + + //its <= just in case + //nothing to do here + if (!$vu && $row['unitcount'] <= 0) + continue; + + //nothing to do here + if ($vu) + if ($row['unitcount'] == $vu['unitcount']) + continue; + + //DELETING row + if ($vu && $row['unitcount'] <= 0) + { + $sql = "DELETE FROM village_units WHERE id='" . $vu['id'] . "'"; + $this->db->query($sql); + continue; + } + + //other cases handled at this point, we only need to check for vu + if ($vu) + { + $sql = "UPDATE village_units + SET unitcount='" . $row['unitcount'] . "' + WHERE id='" . $vu['id'] . "'"; + } + else + { + $sql = "INSERT INTO village_units + VALUES(default, '" . $this->userid . "', '" . $this->villageid . "', + '" . $row['id'] . "', '" . $row['unitcount'] . "')"; + } + + $this->db->query($sql); + } + } + + //unit functions end + + //building + function get_slot_building($slotid, $villageid) + { + $sql = "SELECT buildings.* FROM village_buildings + INNER JOIN buildings ON village_buildings.buildingid=buildings.id + WHERE village_buildings.villageid='$villageid' + AND village_buildings.slotid='$slotid'"; + $q = $this->db->query($sql); + + if ($q->num_rows()) + return $q->row_array(); + + $sql = "SELECT * FROM buildings WHERE id='1'"; + $q = $this->db->query($sql); + + return $q->row_array(); + } + //building end + + //technologies + function add_technology($techid, $group, $tech, $slotid, $villageid) + { + //group == 0 primary, group == 1 secondary + if (!$group) + { + $sql = "INSERT INTO village_technologies + VALUES(default, '$villageid', '0', '$techid')"; + } + else + { + $sql = "INSERT INTO village_technologies + VALUES(default, '$villageid', '$slotid', '$techid')"; + } + + $this->db->query($sql); + + if ($tech['flag_ai']) + { + $sql = "UPDATE villages SET ai_flagged='1' WHERE id='$villageid'"; + + $this->db->query($sql); + } + } + + function get_village_technologies($villageid, $slotid = 0) + { + if ($slotid) + { + $sql = "SELECT * FROM village_technologies + WHERE villageid='$villageid' + AND (slotid='0' OR slotid='$slotid')"; + } + else + { + $sql = "SELECT * FROM village_technologies + WHERE villageid='$villageid' + AND slotid='0'"; + } + + $q = $this->db->query($sql); + + return $q->result_array(); + } + + //data is tecnology data + function have_technology($data, $techid) + { + if (!$techid) + return TRUE; + + foreach ($data as $row) + { + if ($row['technologyid'] == $techid) + return TRUE; + } + + return FALSE; + } + + function has_req_tech($techid, $villageid, $slotid = 0) + { + if (!$techid) + return TRUE; + + $tech = $this->get_village_technologies($villageid, $slotid); + + foreach ($tech as $row) + { + if ($row['technologyid'] == $techid) + return TRUE; + } + + return FALSE; + } + + //technologies end + + //combat log + function add_combat_log($log, $villageid) + { + $sql = "INSERT INTO combat_logs + VALUES(default, '$villageid', '" . time() . "', '1', '$log')"; + + $this->db->query($sql); + + $sql = "UPDATE villages SET new_log='1' WHERE id='$villageid'"; + + $this->db->query($sql); + } + + //combat log end + + //Hero Functions + + //set hero + function set_hero($data) + { + $this->hero = $data; + } + + //to be used with controllers after like equipping, and stat recalculations, combat etc + function get_hero() + { + return $this->hero; + } + + //Hero db update function + function hero_write() + { + //if more than on flag set unset the not needed ones + if ($this->hero_stat_changed) + { + $this->hero_hpmp_changed = FALSE; + $this->hero_exp_changed = FALSE; + } + elseif ($this->hero_exp_changed) + { + $this->hero_hpmp_changed = FALSE; + } + + if ($this->hero_stat_changed) + { + $d = $this->hero; + + $sql = "UPDATE heroes + SET level = '" . $d['level'] . "', + experience = '" . $d['experience'] . "', + health = '" . $d['health'] . "', + mana = '" . $d['mana'] . "', + max_health = '" . $d['max_health'] . "', + max_mana = '" . $d['max_mana'] . "', + percent_max_health = '" . $d['percent_max_health'] . "', + percent_max_mana = '" . $d['percent_max_mana'] . "', + nomod_max_health = '" . $d['nomod_max_health'] . "', + nomod_max_mana = '" . $d['nomod_max_mana'] . "', + points = '" . $d['points'] . "', + agility = '" . $d['agility'] . "', + strength = '" . $d['strength'] . "', + stamina = '" . $d['stamina'] . "', + intellect = '" . $d['intellect'] . "', + spirit = '" . $d['spirit'] . "', + percent_agility = '" . $d['percent_agility'] . "', + percent_strength = '" . $d['percent_strength'] . "', + percent_stamina = '" . $d['percent_stamina'] . "', + percent_intellect = '" . $d['percent_intellect'] . "', + percent_spirit = '" . $d['percent_spirit'] . "', + nomod_agility = '" . $d['nomod_agility'] . "', + nomod_strength = '" . $d['nomod_strength'] . "', + nomod_stamina = '" . $d['nomod_stamina'] . "', + nomod_intellect = '" . $d['nomod_intellect'] . "', + nomod_spirit = '" . $d['nomod_spirit'] . "', + points_agility = '" . $d['points_agility'] . "', + points_strength = '" . $d['points_strength'] . "', + points_stamina = '" . $d['points_stamina'] . "', + points_intellect = '" . $d['points_intellect'] . "', + points_spirit = '" . $d['points_spirit'] . "', + attackpower = '" . $d['attackpower'] . "', + percent_attackpower = '" . $d['percent_attackpower'] . "', + nomod_attackpower = '" . $d['nomod_attackpower'] . "', + armor = '" . $d['armor'] . "', + percent_armor = '" . $d['percent_armor'] . "', + nomod_armor = '" . $d['nomod_armor'] . "', + dodge = '" . $d['dodge'] . "', + nomod_dodge = '" . $d['nomod_dodge'] . "', + parry = '" . $d['parry'] . "', + nomod_parry = '" . $d['nomod_parry'] . "', + hit = '" . $d['hit'] . "', + crit = '" . $d['crit'] . "', + nomod_crit = '" . $d['nomod_crit'] . "', + damage_min = '" . $d['damage_min'] . "', + damage_max = '" . $d['damage_max'] . "', + percent_damage_min = '" . $d['percent_damage_min'] . "', + percent_damage_max = '" . $d['percent_damage_max'] . "', + nomod_damage_min = '" . $d['nomod_damage_min'] . "', + nomod_damage_max = '" . $d['nomod_damage_max'] . "', + ranged_damage_min = '" . $d['ranged_damage_min'] . "', + ranged_damage_max = '" . $d['ranged_damage_max'] . "', + percent_ranged_damage_min = '" . $d['percent_ranged_damage_min'] . "', + percent_ranged_damage_max = '" . $d['percent_ranged_damage_max'] . "', + nomod_ranged_damage_min = '" . $d['nomod_ranged_damage_min'] . "', + nomod_ranged_damage_max = '" . $d['nomod_ranged_damage_max'] . "', + heal_min = '" . $d['heal_min'] . "', + heal_max = '" . $d['heal_max'] . "', + percent_heal_min = '" . $d['percent_heal_min'] . "', + percent_heal_max = '" . $d['percent_heal_max'] . "', + nomod_heal_min = '" . $d['nomod_heal_min'] . "', + nomod_heal_max = '" . $d['nomod_heal_max'] . "', + life_leech = '" . $d['life_leech'] . "', + mana_leech = '" . $d['mana_leech'] . "' + WHERE id = '" . $d['id'] . "'"; + + $this->db->query($sql); + + return TRUE; + } + + //exp, hp, mp + if ($this->hero_exp_changed) + { + $d = $this->hero; + + $sql = "UPDATE heroes + SET health='" . $d['health'] . "', + mana='" . $d['mana'] . "', + experience='" . $d['experience'] . "' + WHERE id = '" . $d['id'] . "'"; + + $this->db->query($sql); + + return TRUE; + } + + if ($this->hero_hpmp_changed) + { + $d = $this->hero; + + $sql = "UPDATE heroes + SET health='" . $d['health'] . "', + mana='" . $d['mana'] . "', + WHERE id = '" . $d['id'] . "'"; + + $this->db->query($sql); + + return TRUE; + } + + return FALSE; + } + + //Hero stat calc functions + + //thins calculates every char stats (like when equipping) + function calc_hero_stats() + { + $d = $this->hero; + $c = $this->hero['class']; + + //base stats + $d['agility'] = floor(($d['nomod_agility'] / 100) * $d['percent_agility']); + $d['strength'] = floor(($d['nomod_strength'] / 100) * $d['percent_strength']); + $d['stamina'] = floor(($d['nomod_stamina'] / 100) * $d['percent_stamina']); + $d['intellect'] = floor(($d['nomod_intellect'] / 100) * $d['percent_intellect']); + $d['spirit'] = floor(($d['nomod_spirit'] / 100) * $d['percent_spirit']); + + //health, mana + $d['max_health'] = $this->hero_stat($c, 'max_health', $d); + $d['max_mana'] = $this->hero_stat($c, 'max_mana', $d); + + $d['max_health'] = floor(($d['max_health'] / 100) * $d['percent_max_health']); + $d['max_mana'] = floor(($d['max_mana'] / 100) * $d['percent_max_mana']); + + $d['health'] = $d['max_health']; + $d['mana'] = $d['max_mana']; + + //ap + $d['attackpower'] = $this->hero_stat($c, 'attackpower', $d); + $d['attackpower'] = floor(($d['attackpower'] / 100) * $d['percent_attackpower']); + + //% stats + $d['dodge'] = $this->hero_stat($c, 'dodge', $d); + $d['parry'] = $this->hero_stat($c, 'parry', $d); + $d['crit'] = $this->hero_stat($c, 'crit', $d); + + //damage + $d['damage_min'] = $this->hero_stat($c, 'damage_min', $d); + $d['damage_min'] = floor(($d['damage_min'] / 100) * $d['percent_damage_min']); + $d['damage_max'] = $this->hero_stat($c, 'damage_max', $d); + $d['damage_max'] = floor(($d['damage_max'] / 100) * $d['percent_damage_max']); + + //ranged damage + $d['ranged_damage_min'] = $this->hero_stat($c, 'ranged_damage_min', $d); + $d['ranged_damage_min'] = floor(($d['ranged_damage_min'] / 100) * $d['percent_ranged_damage_min']); + $d['ranged_damage_max'] = $this->hero_stat($c, 'ranged_damage_max', $d); + $d['ranged_damage_max'] = floor(($d['ranged_damage_max'] / 100) * $d['percent_ranged_damage_max']); + + //heal + $d['heal_min'] = $this->hero_stat($c, 'heal_min', $d); + $d['heal_min'] = floor(($d['heal_min'] / 100) * $d['percent_heal_min']); + $d['heal_max'] = $this->hero_stat($c, 'heal_max', $d); + $d['heal_max'] = floor(($d['heal_max'] / 100) * $d['percent_heal_max']); + + //armor + $d['armor'] = floor(($d['nomod_armor'] / 100) * $d['percent_armor']); + + $this->hero = $d; + $this->hero_stat_changed = TRUE; + + $this->hero_write(); + } + + //the function which has all the class formulas + //class can be string or id + function hero_stat($class, $type, $data = FALSE) + { + if (!$data) + $data = $this->hero; + + if ($class == 1 || $class == 'Warrior') + { + if ($type == 'attackpower') + { + $ATTACKPOWER_BASE = 0; + $ATTACKPOWER_FACTOR_STR = 20; + $ATTACKPOWER_FACTOR_AGI = 10; + + $c = $ATTACKPOWER_BASE; + $c += ($data['strength'] * $ATTACKPOWER_FACTOR_STR); + $c += ($data['agility'] * $ATTACKPOWER_FACTOR_AGI); + $c += $data['nomod_attackpower']; + } + elseif ($type == 'crit') + { + $CRIT_BASE = 0; + //how much of these stats give 1% crit + $CRIT_FACTOR_AGI = 40; + $CRIT_FACTOR_STR = 30; + $CRIT_FACTOR_INT = 60; + + $c = $CRIT_BASE; + $c += ($data['agility'] / $CRIT_FACTOR_AGI); + $c += ($data['strength'] / $CRIT_FACTOR_STR); + $c += ($data['intellect'] / $CRIT_FACTOR_INT); + $c += $data['nomod_crit']; + } + } + elseif ($class == 2 || $class == 'Rogue') + { + if ($type == 'attackpower') + { + $ATTACKPOWER_BASE = 0; + $ATTACKPOWER_FACTOR_STR = 5; + $ATTACKPOWER_FACTOR_AGI = 25; + + $c = $ATTACKPOWER_BASE; + $c += ($data['strength'] * $ATTACKPOWER_FACTOR_STR); + $c += ($data['agility'] * $ATTACKPOWER_FACTOR_AGI); + $c += $data['nomod_attackpower']; + } + elseif ($type == 'crit') + { + $CRIT_BASE = 0; + //how much of these stats give 1% crit + $CRIT_FACTOR_AGI = 25; + $CRIT_FACTOR_STR = 50; + $CRIT_FACTOR_INT = 60; + + $c = $CRIT_BASE; + $c += ($data['agility'] / $CRIT_FACTOR_AGI); + $c += ($data['strength'] / $CRIT_FACTOR_STR); + $c += ($data['intellect'] / $CRIT_FACTOR_INT); + $c += $data['nomod_crit']; + } + } + elseif ($class == 3 || $class == 'Archer') + { + if ($type == 'attackpower') + { + $ATTACKPOWER_BASE = 0; + $ATTACKPOWER_FACTOR_STR = 10; + $ATTACKPOWER_FACTOR_AGI = 20; + + $c = $ATTACKPOWER_BASE; + $c += ($data['strength'] * $ATTACKPOWER_FACTOR_STR); + $c += ($data['agility'] * $ATTACKPOWER_FACTOR_AGI); + $c += $data['nomod_attackpower']; + } + elseif ($type == 'crit') + { + $CRIT_BASE = 0; + //how much of these stats give 1% crit + $CRIT_FACTOR_AGI = 30; + $CRIT_FACTOR_STR = 60; + $CRIT_FACTOR_INT = 40; + + $c = $CRIT_BASE; + $c += ($data['agility'] / $CRIT_FACTOR_AGI); + $c += ($data['strength'] / $CRIT_FACTOR_STR); + $c += ($data['intellect'] / $CRIT_FACTOR_INT); + $c += $data['nomod_crit']; + } + } + + if ($type == 'max_health') + { + $HEALTH_FACTOR = 10; + + $c = $data['stamina'] * $HEALTH_FACTOR; + $c += $data['nomod_max_health']; + } + elseif ($type == 'max_mana') + { + $MANA_FACTOR = 10; + + $c = $data['intellect'] * $MANA_FACTOR; + $c += $data['nomod_max_mana']; + } + elseif ($type == 'dodge') + { + $DODGE_BASE = 0; + //how much agi gives 1% dodge + $DODGE_FACTOR_AGI = 30; + + $c = $DODGE_BASE; + $c += ($data['agility'] / $DODGE_FACTOR_AGI); + $c += $data['nomod_dodge']; + } + elseif ($type == 'parry') + { + $PARRY_BASE = 0; + //how much str gives 1% parry + $PARRY_FACTOR_STR = 30; + + $c = $PARRY_BASE; + $c += ($data['strength'] / $PARRY_FACTOR_STR); + $c += $data['nomod_parry']; + } + elseif ($type == 'damage_min') + { + $DAMAGE_BASE = 0; + //how much ap gives 1 dmg increase + $DAMAGE_FACTOR = 100; + + $c = $DAMAGE_BASE; + $c += floor($data['attackpower'] / $DAMAGE_FACTOR); + $c += $data['nomod_damage_min']; + } + elseif ($type == 'damage_max') + { + $DAMAGE_BASE = 0; + //how much ap gives 1 dmg increase + $DAMAGE_FACTOR = 100; + + $c = $DAMAGE_BASE; + $c += floor($data['attackpower'] / $DAMAGE_FACTOR); + $c += $data['nomod_damage_max']; + } + elseif ($type == 'ranged_damage_min') + { + $DAMAGE_BASE = 0; + //how much ap gives 1 dmg increase + $DAMAGE_FACTOR = 100; + + $c = $DAMAGE_BASE; + $c += floor($data['attackpower'] / $DAMAGE_FACTOR); + $c += $data['nomod_ranged_damage_min']; + } + elseif ($type == 'ranged_damage_max') + { + $DAMAGE_BASE = 0; + //how much ap gives 1 dmg increase + $DAMAGE_FACTOR = 100; + + $c = $DAMAGE_BASE; + $c += floor($data['attackpower'] / $DAMAGE_FACTOR); + $c += $data['nomod_ranged_damage_max']; + } + elseif ($type == 'heal_min') + { + $c = 0; + } + elseif ($type == 'heal_max') + { + $c = 0; + } + + if (isset($c)) + return $c; + + return FALSE; + } + + function hero_add_stats($data) + { + $d = $this->hero; + + if (isset($data['level_modifier'])) + { + $lvlmax = $data['level_modifier_max']; + + //this means no limit + if (!$lvlmax) + $lvlmax = $this->hero['level']; + + if ($lvlmax < $this->hero['level']) + $lvlmod = $lvlmax; + else + $lvlmod = $this->hero['level']; + + $lvlmod *= $data['level_modifier']; + } + else + { + $lvlmod = 0; + } + + $d['percent_max_health'] += $data['percent_max_health']; + $d['percent_max_mana'] += $data['percent_max_mana']; + + $d['nomod_max_health'] += $data['nomod_max_health']; + $d['nomod_max_mana'] += $data['nomod_max_mana']; + + $d['percent_agility'] += $data['percent_agility']; + $d['percent_strength'] += $data['percent_strength']; + $d['percent_stamina'] += $data['percent_stamina']; + $d['percent_intellect'] += $data['percent_intellect']; + $d['percent_spirit'] += $data['percent_spirit']; + + $d['nomod_agility'] += $data['nomod_agility'] + $lvlmod; + $d['nomod_strength'] += $data['nomod_strength'] + $lvlmod; + $d['nomod_stamina'] += $data['nomod_stamina'] + $lvlmod; + $d['nomod_intellect'] += $data['nomod_intellect'] + $lvlmod; + $d['nomod_spirit'] += $data['nomod_spirit'] + $lvlmod; + + $d['percent_attackpower'] += $data['percent_attackpower']; + $d['nomod_attackpower'] += $data['nomod_attackpower']; + + $d['percent_armor'] += $data['percent_armor']; + $d['nomod_armor'] += $data['nomod_armor']; + + $d['nomod_dodge'] += $data['nomod_dodge']; + $d['nomod_parry'] += $data['nomod_parry']; + $d['hit'] += $data['hit']; + $d['nomod_crit'] += $data['nomod_crit']; + + $d['percent_damage_min'] += $data['percent_damage_min']; + $d['percent_damage_max'] += $data['percent_damage_max']; + $d['nomod_damage_min'] += $data['nomod_damage_min']; + $d['nomod_damage_max'] += $data['nomod_damage_max']; + + $d['percent_ranged_damage_min'] += $data['percent_ranged_damage_min']; + $d['percent_ranged_damage_max'] += $data['percent_ranged_damage_max']; + $d['nomod_ranged_damage_min'] += $data['nomod_ranged_damage_min']; + $d['nomod_ranged_damage_max'] += $data['nomod_ranged_damage_max']; + + $d['percent_heal_min'] += $data['percent_heal_min']; + $d['percent_heal_max'] += $data['percent_heal_max']; + + $d['nomod_heal_min'] += $data['nomod_heal_min']; + $d['nomod_heal_max'] += $data['nomod_heal_max']; + + $d['life_leech'] += $data['life_leech']; + $d['mana_leech'] += $data['mana_leech']; + + $this->hero = $d; + } + + function hero_remove_stats($data) + { + $d = $this->hero; + + if (isset($data['level_modifier'])) + { + $lvlmax = $data['level_modifier_max']; + + //this means no limit + if (!$lvlmax) + $lvlmax = $this->hero['level']; + + if ($lvlmax < $this->hero['level']) + $lvlmod = $lvlmax; + else + $lvlmod = $this->hero['level']; + + $lvlmod *= $data['level_modifier']; + } + else + { + $lvlmod = 0; + } + + $d['percent_max_health'] -= $data['percent_max_health']; + $d['percent_max_mana'] -= $data['percent_max_mana']; + + $d['nomod_max_health'] -= $data['nomod_max_health']; + $d['nomod_max_mana'] -= $data['nomod_max_mana']; + + $d['percent_agility'] -= $data['percent_agility']; + $d['percent_strength'] -= $data['percent_strength']; + $d['percent_stamina'] -= $data['percent_stamina']; + $d['percent_intellect'] -= $data['percent_intellect']; + $d['percent_spirit'] -= $data['percent_spirit']; + + $d['nomod_agility'] -= $data['nomod_agility'] + $lvlmod; + $d['nomod_strength'] -= $data['nomod_strength'] + $lvlmod; + $d['nomod_stamina'] -= $data['nomod_stamina'] + $lvlmod; + $d['nomod_intellect'] -= $data['nomod_intellect'] + $lvlmod; + $d['nomod_spirit'] -= $data['nomod_spirit'] + $lvlmod; + + $d['percent_attackpower'] -= $data['percent_attackpower']; + $d['nomod_attackpower'] -= $data['nomod_attackpower']; + + $d['percent_armor'] -= $data['percent_armor']; + $d['nomod_armor'] -= $data['nomod_armor']; + + $d['nomod_dodge'] -= $data['nomod_dodge']; + $d['nomod_parry'] -= $data['nomod_parry']; + $d['hit'] -= $data['hit']; + $d['nomod_crit'] -= $data['nomod_crit']; + + $d['percent_damage_min'] -= $data['percent_damage_min']; + $d['percent_damage_max'] -= $data['percent_damage_max']; + $d['nomod_damage_min'] -= $data['nomod_damage_min']; + $d['nomod_damage_max'] -= $data['nomod_damage_max']; + + $d['percent_ranged_damage_min'] -= $data['percent_ranged_damage_min']; + $d['percent_ranged_damage_max'] -= $data['percent_ranged_damage_max']; + $d['nomod_ranged_damage_min'] -= $data['nomod_ranged_damage_min']; + $d['nomod_ranged_damage_max'] -= $data['nomod_ranged_damage_max']; + + $d['percent_heal_min'] -= $data['percent_heal_min']; + $d['percent_heal_max'] -= $data['percent_heal_max']; + $d['nomod_heal_min'] -= $data['nomod_heal_min']; + $d['nomod_heal_max'] -= $data['nomod_heal_max']; + + $d['life_leech'] -= $data['life_leech']; + $d['mana_leech'] -= $data['mana_leech']; + + $this->hero = $d; + } + + //Hero stat calc functions end + + function hero_find_empty_bagspace($data, $key = 'id') + { + if (!$data) + return 0; + + $found = FALSE; + for ($i = 0; $i < self::INVENTORY_MAX; $i++) + { + foreach ($data as $row) + { + if ($row[$key] == $i) + { + $found = TRUE; + break; + } + } + + if ($found) + { + $found = FALSE; + } + else + { + return $i; + } + } + + return FALSE; + } + + //Hero Functions end + + //admin sql functions + function _create_sql($sql) + { + $this->load->helper('file'); + + $time = time(); + + $file = './sql/' .$time . '.sql'; + + write_file($file, $sql); + + $this->_update_db_version($time); + } + + function _update_db_version($time) + { + $sql = "UPDATE db_version SET version='$time' WHERE id='1'"; + + $this->db->query($sql); + } + + function _create_sql_debug($sql) + { + $this->load->helper('file'); + + $time = time(); + + $file = './sql/debug_' .$time . '.sql'; + + write_file($file, $sql); + } + + //admin sql functions end + +} +//nowhitesp \ No newline at end of file diff --git a/Mourne-CI/application/core/index.html b/Mourne-CI/application/core/index.html new file mode 100755 index 0000000..c942a79 --- /dev/null +++ b/Mourne-CI/application/core/index.html @@ -0,0 +1,10 @@ + + +Directory access is forbidden.
+ + + \ No newline at end of file diff --git a/Mourne-CI/application/helpers/class_helper.php b/Mourne-CI/application/helpers/class_helper.php new file mode 100755 index 0000000..e425091 --- /dev/null +++ b/Mourne-CI/application/helpers/class_helper.php @@ -0,0 +1,30 @@ + $hero['level']) + { + $data['message'] = 'Your level is too low to use that item.'; + return $data; + } + + if ($item['subtype'] == 6) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = 6; + return $data; + } + elseif ($item['subtype'] == 12) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = 12; + $data['allowed_slot2'] = 13; + return $data; + } + elseif ($item['subtype'] == 14) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = 14; + $data['allowed_slot2'] = 15; + return $data; + } + elseif ($item['subtype'] == 19) + { + if ($hero['class'] == 2) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = 19; + return $data; + } + } + + $datatype = array( + //warrior + '1' => array(0, 1, 2, 3, 4), + //rogue + '2' => array(0, 1, 2, FALSE, FALSE), + //archer + '3' => array(0, 1, 2, 3, FALSE)); + + $dataeqslots = array( + //head + '0' => array(0, FALSE), + //neck + '1' => array(1, FALSE), + //shoulder + '2' => array(2, FALSE), + //back + '3' => array(3, FALSE), + //chest + '4' => array(4, FALSE), + //shirt + '5' => array(5, FALSE), + //bracer + '7' => array(7, FALSE), + //gloves + '8' => array(8, FALSE), + //belt + '9' => array(9, FALSE), + //legs + '10' => array(10, FALSE), + //foots + '11' => array(11, FALSE), + ); + + //this means every item, whose subsubtype means the type (like cloth) + if ($item['subtype'] >= 0 && $item['subtype'] < 6 || $item['subtype'] > 6 && $item['subtype'] < 12) + { + if ($datatype[$hero['class']][$item['subsubtype']] !== FALSE) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = $dataeqslots[$item['subtype']][0]; + $data['allowed_slot2'] = $dataeqslots[$item['subtype']][1]; + return $data; + } + else + { + $data['can'] = FALSE; + $data['message'] = "You don't have the required proficiency to use that item."; + return $data; + } + } + + $dataclasswep = array( + //warrior + '1' => array(FALSE, FALSE, FALSE, FALSE, 5, 6, 7, 8, 9, 10, + 11, 12, 13, 14, 15, 16, FALSE, FALSE, FALSE, 20, FALSE), + //rogue + '2' => array(FALSE, 2, 3, 4, 5, 6, 7, FALSE, 9, 10, + 11, FALSE, 13, 14, 15, FALSE, FALSE, FALSE, FALSE, FALSE, 21), + //archer + '3' => array(FALSE, 2, 3, 4, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, + FALSE, FALSE, 13, 14, 15, 16, 17, 18, 19, FALSE, FALSE) + ); + + //array(first slot, second slot, two Handed) + $datawep = array( + //staff + '1' => array(16, FALSE, TRUE), + //dagger one, main, off + '2' => array(16, 17, FALSE), + '3' => array(16, FALSE, FALSE), + '4' => array(17, FALSE, FALSE), + //mace one main, off, 2h + '5' => array(16, 17, FALSE), + '6' => array(16, FALSE, FALSE), + '7' => array(17, FALSE, FALSE), + '8' => array(16, FALSE, TRUE), + //axe one, main, off, 2h + '9' => array(16, 17, FALSE), + '10' => array(16, FALSE, FALSE), + '11' => array(17, FALSE, FALSE), + '12' => array(16, FALSE, TRUE), + //sword one, main, off, 2h + '13' => array(16, 17, FALSE), + '14' => array(16, FALSE, FALSE), + '15' => array(17, FALSE, FALSE), + '16' => array(16, FALSE, TRUE), + //bow, crossbow, gun + '17' => array(18, 17, FALSE), + '18' => array(18, FALSE, FALSE), + '19' => array(18, FALSE, FALSE), + //?? warri, rogue ranged + '20' => array(18, FALSE, FALSE), + '21' => array(18, FALSE, FALSE) + ); + + if ($item['subtype'] == 16) + { + if ($dataclasswep[$hero['class']][$item['subsubtype']] !== FALSE) + { + $data['can'] = TRUE; + $data['allowed_slot1'] = $datawep[$item['subsubtype']][0]; + $data['allowed_slot2'] = $datawep[$item['subsubtype']][1]; + $data['two_handed'] = $datawep[$item['subsubtype']][2]; + return $data; + } + } + + $data['can'] = FALSE; + $data['message'] = 'You cannot use that item.'; + return $data; + } +} \ No newline at end of file diff --git a/Mourne-CI/application/helpers/event_helper.php b/Mourne-CI/application/helpers/event_helper.php new file mode 100755 index 0000000..55e80f0 --- /dev/null +++ b/Mourne-CI/application/helpers/event_helper.php @@ -0,0 +1,16 @@ + + +Directory access is forbidden.
+ + +