making win+space work when no tasks are running

This commit is contained in:
Benji Dial 2021-02-17 09:11:39 -05:00
parent 642c3c69a6
commit 49d76d30a5
3 changed files with 64 additions and 55 deletions

View file

@ -132,7 +132,8 @@ void init_paging() {
__attribute__ ((pure)) __attribute__ ((pure))
void *vma_to_pma(void *pd, const void *vma) { void *vma_to_pma(void *pd, const void *vma) {
return (void *)(((uint32_t *)(((uint32_t *)pd)[(uint32_t)vma >> 22] & PE_ADDR_MASK))[((uint32_t)vma >> 12) % 1024] & PE_ADDR_MASK) + (uint32_t)vma % 4096; //this is maybe not good - in the case where pd is zero, vma is returned unconsted. hopefully this doesn't become a problem.
return pd ? (void *)(((uint32_t *)(((uint32_t *)pd)[(uint32_t)vma >> 22] & PE_ADDR_MASK))[((uint32_t)vma >> 12) % 1024] & PE_ADDR_MASK) + (uint32_t)vma % 4096 : (void *)(uint32_t)vma;
} }
void switch_to_kernel_cr3() { void switch_to_kernel_cr3() {
@ -143,6 +144,7 @@ void switch_to_kernel_cr3() {
} }
void switch_to_task_cr3() { void switch_to_task_cr3() {
if (active_task->page_directory)
asm volatile ( asm volatile (
"mov %0, %%cr3" "mov %0, %%cr3"
: : "a" (active_task->page_directory)); : : "a" (active_task->page_directory));

View file

@ -86,12 +86,12 @@ void advance_active_task() {
} }
void make_sure_tasks() { void make_sure_tasks() {
while (1) {
for (uint8_t n = 0; n < MAX_TASKS; ++n) for (uint8_t n = 0; n < MAX_TASKS; ++n)
if (tasks[n].page_directory) if (tasks[n].page_directory)
return; return;
logf(LOG_INFO, "No tasks, halting."); tmp_halt();
while (1) }
asm("hlt");
} }
//IPC stuff isn't fully implemented, or tested in this version. //IPC stuff isn't fully implemented, or tested in this version.

View file

@ -289,7 +289,6 @@ void on_action(struct window_action packet) {
if (packet.action_type == NOT_READY) if (packet.action_type == NOT_READY)
return; return;
if (top_window) {
if (packet.action_type == KEY_DOWN) if (packet.action_type == KEY_DOWN)
for (uint8_t i = 0; i < N_WM_ACTIONS; ++i) for (uint8_t i = 0; i < N_WM_ACTIONS; ++i)
if (fuzzy_key_match(keybinds[i], packet.as_key)) { if (fuzzy_key_match(keybinds[i], packet.as_key)) {
@ -297,7 +296,7 @@ void on_action(struct window_action packet) {
struct window *old_top, *old_bottom; struct window *old_top, *old_bottom;
switch (i) { switch (i) {
case WM_SHUFFLE_UP: case WM_SHUFFLE_UP:
if (!top_window->below) if (!top_window || !top_window->below)
break; break;
old_top = top_window; old_top = top_window;
old_bottom = bottom_window; old_bottom = bottom_window;
@ -310,7 +309,7 @@ void on_action(struct window_action packet) {
paint_and_above(bottom_window->above); paint_and_above(bottom_window->above);
break; break;
case WM_SHUFFLE_DOWN: case WM_SHUFFLE_DOWN:
if (!top_window->below) if (!top_window || !top_window->below)
break; break;
old_top = top_window; old_top = top_window;
old_bottom = bottom_window; old_bottom = bottom_window;
@ -323,20 +322,28 @@ void on_action(struct window_action packet) {
paint_and_above(top_window); paint_and_above(top_window);
break; break;
case WM_MOVE_LEFT: case WM_MOVE_LEFT:
if (top_window) {
--top_window->xpos; --top_window->xpos;
paint_all(); paint_all();
}
break; break;
case WM_MOVE_RIGHT: case WM_MOVE_RIGHT:
if (top_window) {
++top_window->xpos; ++top_window->xpos;
paint_all(); paint_all();
}
break; break;
case WM_MOVE_UP: case WM_MOVE_UP:
if (top_window) {
--top_window->ypos; --top_window->ypos;
paint_all(); paint_all();
}
break; break;
case WM_MOVE_DOWN: case WM_MOVE_DOWN:
if (top_window) {
++top_window->ypos; ++top_window->ypos;
paint_all(); paint_all();
}
break; break;
case WM_RUN_COMMAND: case WM_RUN_COMMAND:
if (!try_elf_run(drives, run_command, run_command_pass, 0)) if (!try_elf_run(drives, run_command, run_command_pass, 0))
@ -346,6 +353,6 @@ void on_action(struct window_action packet) {
return; return;
} }
if (top_window)
send_action(top_window, packet); send_action(top_window, packet);
}
} }