Home
last modified time | relevance | path

Searched refs:Me (Results 1 – 25 of 3639) sorted by relevance

12345678910>>...146

/dports/games/freedroidrpg/freedroidrpg-0.16.1/src/
H A Dinflu.c114 float speed = Me.speed.x * Me.speed.x + Me.speed.y * Me.speed.y; in limit_tux_speed()
186 gps oldpos = { Me.pos.x, Me.pos.y, Me.pos.z }; in correct_tux_position_according_to_jump()
657 DirectLineColldet(Me.pos.x, Me.pos.y, Me.mouse_move_target.x, in move_tux_towards_intermediate_point()
728 Me.mouse_move_target.x = Me.pos.x; in move_tux()
766 Me.mouse_move_target.x = Me.pos.x; in move_tux()
767 Me.mouse_move_target.y = Me.pos.y; in move_tux()
768 Me.mouse_move_target.z = Me.pos.z; in move_tux()
894 float my_speed = sqrt(Me.speed.x * Me.speed.x + Me.speed.y * Me.speed.y); in animate_tux()
1495 Me.mouse_move_target.z = Me.pos.z; in check_for_droids_to_attack_or_talk_with()
1623 Me.mouse_move_target.z = Me.pos.z; in set_movement_with_keys()
[all …]
H A Dcharacter.c169 Me.strength = Me.base_strength; in update_all_primary_stats()
170 Me.dexterity = Me.base_dexterity; in update_all_primary_stats()
171 Me.cooling = Me.base_cooling; in update_all_primary_stats()
172 Me.physique = Me.base_physique; in update_all_primary_stats()
193 item *equipment[5] = { &Me.armour_item, &Me.weapon_item, &Me.drive_item, in update_all_primary_stats()
194 &Me.shield_item, &Me.special_item }; in update_all_primary_stats()
239 Me.max_running_power = (Me.strength) + (Me.dexterity) + (Me.physique) + Me.running_power_bonus; in update_secondary_stats_from_primary_stats()
350 if (Me.energy > Me.maxenergy) in UpdateAllCharacterStats()
351 Me.energy = Me.maxenergy; in UpdateAllCharacterStats()
471 if (Me.strength != Me.base_strength) in ShowCharacterScreen()
[all …]
H A Dmain.c330 my_speed = sqrt(Me.speed.x * Me.speed.x + Me.speed.y * Me.speed.y); in UpdateCountersForThisFrame()
335 if (Me.running_power > Me.max_running_power) in UpdateCountersForThisFrame()
336 Me.running_power = Me.max_running_power; in UpdateCountersForThisFrame()
343 Me.energy += Me.health_recovery_rate * latest_frame_time; in UpdateCountersForThisFrame()
344 if (Me.energy > Me.maxenergy) in UpdateCountersForThisFrame()
345 Me.energy = Me.maxenergy; in UpdateCountersForThisFrame()
347 Me.temperature -= Me.cooling_rate * latest_frame_time; in UpdateCountersForThisFrame()
353 if (Me.temperature > Me.max_temperature) //overheat, lose life in UpdateCountersForThisFrame()
355 if (Me.old_temperature < Me.max_temperature) in UpdateCountersForThisFrame()
370 Me.old_temperature = Me.temperature; in UpdateCountersForThisFrame()
[all …]
H A Dmission.c57 Me.AllMissions[mis_num].mission_description_time[idx] = Me.current_game_date; in mission_diary_add()
61 Me.quest_browser_changed = 1; in mission_diary_add()
156 Me.quest_browser_changed = 1; in AssignMission()
171 Me.quest_browser_changed = 1; in CompleteMission()
186 Me.AllMissions[i].MissionIsComplete = FALSE; in clear_tux_mission_info()
187 Me.AllMissions[i].MissionWasFailed = FALSE; in clear_tux_mission_info()
190 if (Me.AllMissions[i].mission_name) { in clear_tux_mission_info()
191 free(Me.AllMissions[i].mission_name); in clear_tux_mission_info()
192 Me.AllMissions[i].mission_name = NULL; in clear_tux_mission_info()
204 if (Me.AllMissions[i].completion_lua_code) { in clear_tux_mission_info()
[all …]
H A Ditems.c765 Me.energy += 15; in apply_item()
769 Me.energy += 25; in apply_item()
772 Me.energy += 50; in apply_item()
775 Me.energy += Me.maxenergy; in apply_item()
784 Me.running_power = Me.max_running_power; in apply_item()
788 Me.power_bonus_end_date = Me.current_game_date + 2.0 * 60; in apply_item()
791 Me.dexterity_bonus_end_date = Me.current_game_date + 2.0 * 60; in apply_item()
801 Me.base_cooling++; in apply_item()
1257 DirectLineColldet(Me.pos.x, Me.pos.y, pos.x, pos.y, Me.pos.z, &margin))) in drop_held_item()
2072 drop_item(it, Me.pos.x, Me.pos.y, Me.pos.z); in give_item()
[all …]
H A Daction.c63 *item_x = Me.pos.x; in find_dropable_position_near_chest()
64 *item_y = Me.pos.y; in find_dropable_position_near_chest()
87 …!DirectLineColldet(Me.pos.x, Me.pos.y, obst_x + offset_vector.x, obst_y + offset_vector.y, Me.pos.… in find_dropable_position_near_chest()
111 …!DirectLineColldet(Me.pos.x, Me.pos.y, *item_x + trimmer_x, *item_y + trimmer_y, Me.pos.z, &tux_fi… in find_dropable_position_near_chest()
268 if (calc_distance(Me.pos.x, Me.pos.y, obst_vpos.x, obst_vpos.y) in reach_obstacle_from_any_direction()
302 …if (DirectLineColldet(Me.pos.x, Me.pos.y, obst_vpos.x, obst_vpos.y, Me.pos.z, &WalkablePassFilter)… in reach_obstacle_from_any_direction()
392 if (fabsf(Me.pos.x - obst_vpos.x) + fabsf(Me.pos.y - obst_vpos.y) < 1.1) { in reach_obstacle_from_specific_direction()
604 while (Me.angle < 0) in __obstacle_action()
605 Me.angle += 360; in __obstacle_action()
616 if (!DirectLineColldet(Me.pos.x, Me.pos.y, vpos.x, vpos.y, Me.pos.z, &filter)) in __obstacle_action()
[all …]
H A Dgame_ui.c68 if (Me.weapon_item.type == -1 || &Me.weapon_item == item_held_in_hand) in current_weapon_button_update()
81 if (Me.weapon_item.type == -1 || &Me.weapon_item == item_held_in_hand) in get_current_weapon_button_tooltip()
96 if (Me.weapon_item.type == -1 || &Me.weapon_item == item_held_in_hand) in current_ammo_update()
235 if (Me.god_mode) in health_bar_display()
246 …ffer, "%s\n%s%d/%d\n", _("Health"), Me.energy / Me.maxenergy <= 0.1 ? font_switchto_red : "", (int… in get_health_bar_tooltip()
261 int temp_ratio = Me.max_temperature ? (100 * Me.temperature) / Me.max_temperature : 100; in heat_bar_display()
289 if (Me.temperature > Me.max_temperature) { in heat_bar_display()
294 add = (Me.current_game_date - (int)(Me.current_game_date)) * 255; in heat_bar_display()
307 int temperature = Me.temperature > Me.max_temperature ? Me.max_temperature : Me.temperature; in heat_bar_display()
356 &Me.shield_item, in item_alarm_display()
[all …]
H A Dskills.c102 Me.skill_level[prog_id]++; in improve_program()
117 if (!Me.skill_level[prog_id] && Me.readied_skill == prog_id) { in downgrade_program()
233 if (Me.pos.z == home_spot.z && (Me.teleport_anchor.z != -1)) { in TeleportHome()
238 Teleport(Me.teleport_anchor.z, Me.teleport_anchor.x, Me.teleport_anchor.y, TRUE, TRUE); in TeleportHome()
251 Me.teleport_anchor.x = Me.pos.x; in TeleportHome()
252 Me.teleport_anchor.y = Me.pos.y; in TeleportHome()
253 Me.teleport_anchor.z = Me.pos.z; in TeleportHome()
276 if (Me.skill_level[Me.readied_skill] <= 0) in HandleCurrentlyActivatedSkill()
333 Me.pos.y, in DoSkill()
385 Me.energy -= hitdmg; in DoSkill()
[all …]
H A Dquest_browser_ui.c63 struct mission *mis = &Me.AllMissions[mis_num]; in quest_browser_append_mission_info()
166 else if (fav_destroyed != -1 && (Me.destroyed_bots[model] > Me.destroyed_bots[fav_destroyed])) in print_statistics()
168 if (Me.TakeoverSuccesses[model] + Me.TakeoverFailures[model]) { in print_statistics()
169 …rate = (100 * Me.TakeoverSuccesses[model])/ (Me.TakeoverSuccesses[model] + Me.TakeoverFailures[mod… in print_statistics()
195 if (Me.map_maker_is_present) in print_statistics()
227 Me.TakeoverSuccesses[fav_capture_target] + Me.TakeoverFailures[fav_capture_target]); in print_statistics()
235 Me.TakeoverSuccesses[worst_capture_target] + Me.TakeoverFailures[worst_capture_target]); in print_statistics()
252 …if (Me.damage_dealt[model] || Me.TakeoverSuccesses[model] || Me.TakeoverFailures[model] || Me.dest… in print_statistics()
261 if (Me.TakeoverSuccesses[model] + Me.TakeoverFailures[model]) in print_statistics()
263 … (100 * Me.TakeoverSuccesses[model])/(Me.TakeoverSuccesses[model] + Me.TakeoverFailures[model])); in print_statistics()
[all …]
/dports/games/freedroid/freedroid-1.0.2/src/
H A Dinflu.c156 StartBlast (Me.pos.x, Me.pos.y, REJECTBLAST); in MoveInfluence()
244 ActSpecialField ( Me.pos.x , Me.pos.y ); in MoveInfluence()
342 res = DruidPassable (Me.pos.x, Me.pos.y); in CheckInfluenceWallCollisions()
422 if ( DruidPassable( Me.pos.x + SX , Me.pos.y ) == CENTER ) Me.pos.x += SX; in CheckInfluenceWallCollisions()
423 if ( DruidPassable( Me.pos.x , Me.pos.y +SY ) == CENTER ) Me.pos.y += SY; in CheckInfluenceWallCollisions()
742 Me.speed.x = -Me.speed.x; in CheckInfluenceEnemyCollision()
743 Me.speed.y = -Me.speed.y; in CheckInfluenceEnemyCollision()
912 if (Me.energy < Me.health) in RefreshInfluencer()
919 if (Me.energy > Me.health) in RefreshInfluencer()
920 Me.energy = Me.health; in RefreshInfluencer()
[all …]
/dports/www/hotcrp/hotcrp-2.102/pages/
H A Dhome.php16 if ($Me->has_email()
38 if (!$Me->is_empty() && $Me->disabled) {
106 if ($Me->privChair)
170 if (!$Me->isPC) {
218 $homelist = ($Me->privChair || ($Me->isPC && $papersub) || ($Me->is_reviewer() && $papersub));
275 if ($Me->is_reviewer() && ($Me->privChair || $papersub)) {
302 if ($Me->isPC || $Me->privChair) {
331 if (($Me->isPC || $Me->privChair) && $npc) {
336 if ($Me->isPC || $Me->privChair)
364 } else if ($Me->isPC && $Me->can_review_any()) {
[all …]
/dports/games/hedgewars-server/hedgewars-src-1.0.0/hedgewars/
H A DuAI.pas94 Me:= Hedgehog
110 Me^.AIHints:= Me^.AIHints and (not aihAmmosChanged);
335 addMark(hwRound(Me^.X), hwRound(Me^.Y), markHJumped);
357 addMark(hwRound(Me^.X), hwRound(Me^.Y), markLJumped);
371 if CanGo then Push(Actions, Me^, Me^.Message);
402 addMark(hwRound(Me^.X), hwRound(Me^.Y), markWalkedHere);
498 BackMe:= Me^;
521 Me^.State:= Me^.State and (not gstHHThinking);
536 Me^.State:= Me^.State or gstHHThinking;
537 Me^.Message:= 0;
[all …]
H A DuAIAmmoTests.pas149 mX:= hwFloat2Float(Me^.X);
150 mY:= hwFloat2Float(Me^.Y);
960 x:= hwRound(Me^.X);
961 y:= hwRound(Me^.Y);
1011 x:= hwRound(Me^.X);
1069 x:= hwRound(Me^.X);
1070 y:= hwRound(Me^.Y);
1210 rate:= RateHammer(Me);
1378 cake.Y:= Me^.Y;
1386 cake.Y:= Me^.Y;
[all …]
/dports/games/hedgewars/hedgewars-src-1.0.0/hedgewars/
H A DuAI.pas94 Me:= Hedgehog
110 Me^.AIHints:= Me^.AIHints and (not aihAmmosChanged);
335 addMark(hwRound(Me^.X), hwRound(Me^.Y), markHJumped);
357 addMark(hwRound(Me^.X), hwRound(Me^.Y), markLJumped);
371 if CanGo then Push(Actions, Me^, Me^.Message);
402 addMark(hwRound(Me^.X), hwRound(Me^.Y), markWalkedHere);
498 BackMe:= Me^;
521 Me^.State:= Me^.State and (not gstHHThinking);
536 Me^.State:= Me^.State or gstHHThinking;
537 Me^.Message:= 0;
[all …]
H A DuAIAmmoTests.pas149 mX:= hwFloat2Float(Me^.X);
150 mY:= hwFloat2Float(Me^.Y);
960 x:= hwRound(Me^.X);
961 y:= hwRound(Me^.Y);
1011 x:= hwRound(Me^.X);
1069 x:= hwRound(Me^.X);
1070 y:= hwRound(Me^.Y);
1210 rate:= RateHammer(Me);
1378 cake.Y:= Me^.Y;
1386 cake.Y:= Me^.Y;
[all …]
/dports/www/crp/CRP/All/
H A DUpdateContactInfo.php4 $_SESSION[Me] -> goIfInvalid("../");
25 $_SESSION[Me] -> firstName = $_REQUEST[firstName];
26 $_SESSION[Me] -> lastName = $_REQUEST[lastName];
27 $_SESSION[Me] -> email = $_REQUEST[firstEmail];
30 $_SESSION[Me] -> faxPhoneNumber = $_REQUEST[fax];
31 $_SESSION[Me] -> password = $_REQUEST[passwd];
35 $result = $_SESSION[Me] -> updateDB($Conf);
45 if ( $_SESSION[Me]->isPC ) {
115 $_SESSION[Me] -> updateContactRoleInfo($Conf);
117 if ($_SESSION[Me] -> firstName == "" || $_SESSION[Me] -> lastName == "" ) {
[all …]
H A DauthAccount.php13 && $_SESSION[Me] -> valid()
16 $_SESSION[Me] -> go("../index.php");
20 $_SESSION[Me] -> invalidate();
32 if (! $_SESSION[Me] -> valid() ) {
40 $_SESSION[Me] -> sendAccountInfo($Conf);
46 $_SESSION[Me] -> invalidate();
54 $_SESSION[Me] -> invalidate();
57 if ( ! $_SESSION[Me] -> valid()) {
75 $_SESSION[Me] -> bumpVisits($Conf);
79 $_SESSION[Me] -> updateContactRoleInfo($Conf);
[all …]
/dports/www/hotcrp/hotcrp-2.102/src/
H A Dreviewtable.php6 global $Me;
25 global $Me;
32 $admin = $Me->can_administer($prow);
242 } else if ($Me->contactId && $rr->requestedBy === $Me->contactId)
300 global $Me;
305 $admin = $Me->can_administer($prow);
322 $tagger = new Tagger($Me);
361 && $prow->has_author($Me)
362 && !$Me->can_administer($prow)) {
435 if ($prow->has_author($Me))
[all …]
/dports/games/freedroidrpg/freedroidrpg-0.16.1/src/lvledit/
H A Dlvledit_input.c91 Me.pos.x -= 1; in HandleLevelEditorCursorKeys()
96 Me.pos.x += 1; in HandleLevelEditorCursorKeys()
101 Me.pos.y += 1; in HandleLevelEditorCursorKeys()
170 Me.pos.x += chx; in level_editor_auto_scroll()
171 Me.pos.y += chy; in level_editor_auto_scroll()
173 if (Me.pos.x >= curShip.AllLevels[Me.pos.z]->xlen - 1) in level_editor_auto_scroll()
174 Me.pos.x = curShip.AllLevels[Me.pos.z]->xlen - 1; in level_editor_auto_scroll()
176 Me.pos.x = 0; in level_editor_auto_scroll()
177 if (Me.pos.y >= curShip.AllLevels[Me.pos.z]->ylen - 1) in level_editor_auto_scroll()
178 Me.pos.y = curShip.AllLevels[Me.pos.z]->ylen - 1; in level_editor_auto_scroll()
[all …]
/dports/lang/swi-pl/swipl-8.2.3/src/Tests/core/
H A Dtest_prolog_listen.pl51 queue(Me),
56 queue(Me),
63 queue(Me),
73 queue(Me),
74 prolog_listen(erase, send_event(Me)),
86 queue(Me),
105 queue(Me),
106 prolog_listen(p/1, send_event(Me)),
111 get_events(Me, Events).
113 queue(Me) :-
[all …]
/dports/games/gemrb/gemrb-0.9.0/gemrb/GUIScripts/demo/
H A DTests.py56 def Me(): function
94 return TA_AppendText (TA, Me(), "")
97 return TA_AppendText (TA, Me(), " ")
100 return TA_AppendText (TA, Me(), "\n")
140 return TA_SetText (TA, Me(), "")
143 return TA_SetText (TA, Me(), None, "")
149 return TA_SetText (TA, Me(), fmline)
153 return TA_SetText (TA, Me(), fmline*3)
157 return TA_SetText (TA, Me(), 2, str2)
168 return TA_PrependText (TA, Me(), "")
[all …]
/dports/www/hotcrp/hotcrp-2.102/
H A Dpaper.php9 if ($Me->is_empty())
10 $Me->escape();
13 $Me->activate_database_account();
15 $Me->escape();
112 }, $Me);
155 global $Conf, $Me, $prow;
161 $ps = new PaperStatus($Conf, $Me);
331 if ($Me->can_administer($prow) || $Me->act_author_view($prow)) {
388 && (!$prow->has_author($Me)
406 $ps = new PaperStatus($Conf, $Me);
[all …]
H A Dapi.php29 global $Me;
31 $Me = false; variable
42 if (!$Me->has_database_account()
43 && ($key = $Me->capability("tracker_kiosk"))) {
57 if (!$Conf->paper && $Me->privChair)
61 if ($Me->is_empty())
84 if (!$Me->is_reviewer())
91 $events = new PaperEvents($Me);
105 $s = new PaperSearch($Me, "");
115 $j = $Me->my_deadlines($Conf->paper);
[all …]
/dports/www/joomla3/joomla3-3.9.24/administrator/language/en-GB/
H A Den-GB.mod_latest.ini27 MOD_LATEST_TITLE_CREATED_NOT_ME="Last Added Articles Not By Me"
28 MOD_LATEST_TITLE_CREATED_NOT_ME_1="Last Added Article Not By Me"
29 MOD_LATEST_TITLE_CREATED_NOT_ME_MORE="Last %1$s Added Articles Not By Me"
30 MOD_LATEST_TITLE_CREATED_BY_ME="Last Added Articles By Me"
31 MOD_LATEST_TITLE_CREATED_BY_ME_1="Last Added Article By Me"
32 MOD_LATEST_TITLE_CREATED_BY_ME_MORE="Last %1$s Added Articles By Me"
45 MOD_LATEST_TITLE_MODIFIED_BY_ME="Last Modified Articles By Me"
46 MOD_LATEST_TITLE_MODIFIED_BY_ME_1="Last Modified Article By Me"
47 MOD_LATEST_TITLE_MODIFIED_BY_ME_MORE="Last %1$s Modified Articles By Me"
48 MOD_LATEST_TITLE_MODIFIED_NOT_ME="Last Modified Articles Not By Me"
[all …]
/dports/www/crp/CRP/
H A Dindex.php20 if (!IsSet($_SESSION[Me]) || ! $_SESSION[Me] -> valid() ) {
27 && $_SESSION[Me] -> valid()
28 && ($_SESSION[Me] -> firstName == "" || $_SESSION[Me] -> lastName == "" ) )
33 $_SESSION[Me] -> goAlert("All/UpdateContactInfo.php",
54 if (! $_SESSION[Me] -> valid() ) {
79 You're logged as <?php echo $_SESSION[Me]->fullname(); echo " (" . $_SESSION[Me]->email . ")" ?>.
91 $_SESSION[Me] -> updateContactRoleInfo($Conf);
115 <? if ($_SESSION[Me]->amReviewer()) {taskbutton("Reviewer", "Reviewer");}?>
116 <? if ( $_SESSION[Me]->isPC ) { taskbutton("PC", "PC Members"); }?>
117 <? if ( $_SESSION[Me]->isChair ) {taskbutton("Chair", "PC Chair");}?>
[all …]

12345678910>>...146