2020-06-16 05:48:30 -07:00
|
|
|
// This file is part of river, a dynamic tiling wayland compositor.
|
|
|
|
//
|
2021-04-14 15:28:39 -07:00
|
|
|
// Copyright 2020-2021 The River Developers
|
2020-06-16 05:48:30 -07:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-10-02 06:53:08 -07:00
|
|
|
|
|
|
|
// This is an implementation of the default "tiled" layout of dwm and the
|
2021-04-14 15:28:39 -07:00
|
|
|
// 3 other orientations thereof. This code is written for the main stack
|
|
|
|
// to the left and then the input/output values are adjusted to apply
|
|
|
|
// the necessary transformations to derive the other orientations.
|
2020-10-02 06:53:08 -07:00
|
|
|
//
|
2021-04-14 15:28:39 -07:00
|
|
|
// With 4 views and one main on the left, the layout looks something like this:
|
2020-10-02 06:53:08 -07:00
|
|
|
//
|
|
|
|
// +-----------------------+------------+
|
|
|
|
// | | |
|
|
|
|
// | | |
|
|
|
|
// | | |
|
|
|
|
// | +------------+
|
|
|
|
// | | |
|
|
|
|
// | | |
|
|
|
|
// | | |
|
|
|
|
// | +------------+
|
|
|
|
// | | |
|
|
|
|
// | | |
|
|
|
|
// | | |
|
|
|
|
// +-----------------------+------------+
|
2020-06-16 05:48:30 -07:00
|
|
|
|
|
|
|
const std = @import("std");
|
2021-04-14 15:28:39 -07:00
|
|
|
const mem = std.mem;
|
|
|
|
const assert = std.debug.assert;
|
|
|
|
|
2020-10-02 06:53:08 -07:00
|
|
|
const wayland = @import("wayland");
|
|
|
|
const wl = wayland.client.wl;
|
|
|
|
const river = wayland.client.river;
|
|
|
|
|
2021-04-14 15:28:39 -07:00
|
|
|
const Location = enum {
|
|
|
|
top,
|
|
|
|
right,
|
|
|
|
bottom,
|
|
|
|
left,
|
|
|
|
};
|
|
|
|
|
|
|
|
const default_main_location: Location = .left;
|
|
|
|
const default_main_count = 1;
|
|
|
|
const default_main_factor = 0.6;
|
|
|
|
const default_view_padding = 6;
|
|
|
|
const default_outer_padding = 6;
|
|
|
|
|
|
|
|
/// We don't free resources on exit, only when output globals are removed.
|
2020-10-02 06:53:08 -07:00
|
|
|
const gpa = std.heap.c_allocator;
|
|
|
|
|
|
|
|
const Context = struct {
|
2021-04-14 15:28:39 -07:00
|
|
|
initialized: bool = false,
|
2020-10-02 06:53:08 -07:00
|
|
|
layout_manager: ?*river.LayoutManagerV1 = null,
|
|
|
|
outputs: std.TailQueue(Output) = .{},
|
|
|
|
|
2021-04-14 15:28:39 -07:00
|
|
|
fn addOutput(context: *Context, registry: *wl.Registry, name: u32) !void {
|
|
|
|
const wl_output = try registry.bind(name, wl.Output, 3);
|
|
|
|
errdefer wl_output.release();
|
2020-10-02 06:53:08 -07:00
|
|
|
const node = try gpa.create(std.TailQueue(Output).Node);
|
2021-04-14 15:28:39 -07:00
|
|
|
errdefer gpa.destroy(node);
|
|
|
|
try node.data.init(context, wl_output, name);
|
|
|
|
context.outputs.append(node);
|
2020-10-02 06:53:08 -07:00
|
|
|
}
|
2021-04-14 15:28:39 -07:00
|
|
|
};
|
2020-06-16 05:48:30 -07:00
|
|
|
|
2020-10-02 06:53:08 -07:00
|
|
|
const Output = struct {
|
2021-04-14 15:28:39 -07:00
|
|
|
wl_output: *wl.Output,
|
|
|
|
name: u32,
|
2020-10-02 06:53:08 -07:00
|
|
|
|
2021-04-14 15:28:39 -07:00
|
|
|
layout: *river.LayoutV1 = undefined,
|
2020-10-02 06:53:08 -07:00
|
|
|
|
2021-04-14 15:28:39 -07:00
|
|
|
fn init(output: *Output, context: *Context, wl_output: *wl.Output, name: u32) !void {
|
|
|
|
output.* = .{ .wl_output = wl_output, .name = name };
|
2021-04-26 12:03:04 -07:00
|
|
|
if (context.initialized) try output.getLayout(context);
|
2020-10-02 06:53:08 -07:00
|
|
|
}
|
|
|
|
|
2021-04-26 12:03:04 -07:00
|
|
|
fn getLayout(output: *Output, context: *Context) !void {
|
2021-04-14 15:28:39 -07:00
|
|
|
assert(context.initialized);
|
|
|
|
output.layout = try context.layout_manager.?.getLayout(output.wl_output, "rivertile");
|
|
|
|
output.layout.setListener(*Output, layoutListener, output) catch unreachable;
|
2020-10-02 06:53:08 -07:00
|
|
|
}
|
|
|
|
|
2021-04-14 15:28:39 -07:00
|
|
|
fn deinit(output: *Output) void {
|
|
|
|
output.wl_output.release();
|
|
|
|
output.layout.destroy();
|
2020-10-02 06:53:08 -07:00
|
|
|
}
|
|
|
|
|
2021-04-14 15:28:39 -07:00
|
|
|
fn layoutListener(layout: *river.LayoutV1, event: river.LayoutV1.Event, output: *Output) void {
|
2020-10-02 06:53:08 -07:00
|
|
|
switch (event) {
|
2021-04-14 15:28:39 -07:00
|
|
|
.namespace_in_use => fatal("namespace 'rivertile' already in use.", .{}),
|
2020-10-02 06:53:08 -07:00
|
|
|
|
2021-04-14 15:28:39 -07:00
|
|
|
.layout_demand => |ev| {
|
2021-04-26 12:03:04 -07:00
|
|
|
const secondary_count = if (ev.view_count > default_main_count)
|
|
|
|
ev.view_count - default_main_count
|
2020-10-02 06:53:08 -07:00
|
|
|
else
|
|
|
|
0;
|
|
|
|
|
2021-04-26 12:03:04 -07:00
|
|
|
const usable_width = switch (default_main_location) {
|
|
|
|
.left, .right => ev.usable_width - 2 * default_outer_padding,
|
|
|
|
.top, .bottom => ev.usable_height - 2 * default_outer_padding,
|
2021-04-14 15:28:39 -07:00
|
|
|
};
|
2021-04-26 12:03:04 -07:00
|
|
|
const usable_height = switch (default_main_location) {
|
|
|
|
.left, .right => ev.usable_height - 2 * default_outer_padding,
|
|
|
|
.top, .bottom => ev.usable_width - 2 * default_outer_padding,
|
2021-04-14 15:28:39 -07:00
|
|
|
};
|
2020-10-02 06:53:08 -07:00
|
|
|
|
|
|
|
// to make things pixel-perfect, we make the first main and first secondary
|
|
|
|
// view slightly larger if the height is not evenly divisible
|
|
|
|
var main_width: u32 = undefined;
|
|
|
|
var main_height: u32 = undefined;
|
|
|
|
var main_height_rem: u32 = undefined;
|
|
|
|
|
|
|
|
var secondary_width: u32 = undefined;
|
|
|
|
var secondary_height: u32 = undefined;
|
|
|
|
var secondary_height_rem: u32 = undefined;
|
|
|
|
|
2021-04-26 12:03:04 -07:00
|
|
|
if (default_main_count > 0 and secondary_count > 0) {
|
|
|
|
main_width = @floatToInt(u32, default_main_factor * @intToFloat(f64, usable_width));
|
|
|
|
main_height = usable_height / default_main_count;
|
|
|
|
main_height_rem = usable_height % default_main_count;
|
2020-10-02 06:53:08 -07:00
|
|
|
|
|
|
|
secondary_width = usable_width - main_width;
|
|
|
|
secondary_height = usable_height / secondary_count;
|
|
|
|
secondary_height_rem = usable_height % secondary_count;
|
2021-04-26 12:03:04 -07:00
|
|
|
} else if (default_main_count > 0) {
|
2020-10-02 06:53:08 -07:00
|
|
|
main_width = usable_width;
|
2021-04-26 12:03:04 -07:00
|
|
|
main_height = usable_height / default_main_count;
|
|
|
|
main_height_rem = usable_height % default_main_count;
|
2020-10-02 06:53:08 -07:00
|
|
|
} else if (secondary_width > 0) {
|
|
|
|
main_width = 0;
|
|
|
|
secondary_width = usable_width;
|
|
|
|
secondary_height = usable_height / secondary_count;
|
|
|
|
secondary_height_rem = usable_height % secondary_count;
|
|
|
|
}
|
2020-06-16 05:48:30 -07:00
|
|
|
|
2020-10-02 06:53:08 -07:00
|
|
|
var i: u32 = 0;
|
2021-04-14 15:28:39 -07:00
|
|
|
while (i < ev.view_count) : (i += 1) {
|
2020-10-02 06:53:08 -07:00
|
|
|
var x: i32 = undefined;
|
|
|
|
var y: i32 = undefined;
|
|
|
|
var width: u32 = undefined;
|
|
|
|
var height: u32 = undefined;
|
|
|
|
|
2021-04-26 12:03:04 -07:00
|
|
|
if (i < default_main_count) {
|
2020-10-02 06:53:08 -07:00
|
|
|
x = 0;
|
|
|
|
y = @intCast(i32, (i * main_height) + if (i > 0) main_height_rem else 0);
|
|
|
|
width = main_width;
|
|
|
|
height = main_height + if (i == 0) main_height_rem else 0;
|
|
|
|
} else {
|
|
|
|
x = @intCast(i32, main_width);
|
2021-04-26 12:03:04 -07:00
|
|
|
y = @intCast(i32, (i - default_main_count) * secondary_height +
|
|
|
|
if (i > default_main_count) secondary_height_rem else 0);
|
2020-10-02 06:53:08 -07:00
|
|
|
width = secondary_width;
|
2021-04-26 12:03:04 -07:00
|
|
|
height = secondary_height + if (i == default_main_count) secondary_height_rem else 0;
|
2020-10-02 06:53:08 -07:00
|
|
|
}
|
|
|
|
|
2021-04-26 12:03:04 -07:00
|
|
|
x += @intCast(i32, default_view_padding);
|
|
|
|
y += @intCast(i32, default_view_padding);
|
|
|
|
width -= 2 * default_view_padding;
|
|
|
|
height -= 2 * default_view_padding;
|
2020-10-02 06:53:08 -07:00
|
|
|
|
2021-04-26 12:03:04 -07:00
|
|
|
switch (default_main_location) {
|
2020-10-02 06:53:08 -07:00
|
|
|
.left => layout.pushViewDimensions(
|
2021-04-14 15:28:39 -07:00
|
|
|
ev.serial,
|
2021-04-26 12:03:04 -07:00
|
|
|
x + @intCast(i32, default_outer_padding),
|
|
|
|
y + @intCast(i32, default_outer_padding),
|
2020-10-02 06:53:08 -07:00
|
|
|
width,
|
|
|
|
height,
|
|
|
|
),
|
|
|
|
.right => layout.pushViewDimensions(
|
2021-04-14 15:28:39 -07:00
|
|
|
ev.serial,
|
2021-04-26 12:03:04 -07:00
|
|
|
@intCast(i32, usable_width - width) - x + @intCast(i32, default_outer_padding),
|
|
|
|
y + @intCast(i32, default_outer_padding),
|
2020-10-02 06:53:08 -07:00
|
|
|
width,
|
|
|
|
height,
|
|
|
|
),
|
|
|
|
.top => layout.pushViewDimensions(
|
2021-04-14 15:28:39 -07:00
|
|
|
ev.serial,
|
2021-04-26 12:03:04 -07:00
|
|
|
y + @intCast(i32, default_outer_padding),
|
|
|
|
x + @intCast(i32, default_outer_padding),
|
2020-10-02 06:53:08 -07:00
|
|
|
height,
|
|
|
|
width,
|
|
|
|
),
|
|
|
|
.bottom => layout.pushViewDimensions(
|
2021-04-14 15:28:39 -07:00
|
|
|
ev.serial,
|
2021-04-26 12:03:04 -07:00
|
|
|
y + @intCast(i32, default_outer_padding),
|
|
|
|
@intCast(i32, usable_width - width) - x + @intCast(i32, default_outer_padding),
|
2020-10-02 06:53:08 -07:00
|
|
|
height,
|
|
|
|
width,
|
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-14 15:28:39 -07:00
|
|
|
layout.commit(ev.serial);
|
2020-10-02 06:53:08 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
.advertise_view => {},
|
|
|
|
.advertise_done => {},
|
2020-06-16 05:48:30 -07:00
|
|
|
}
|
|
|
|
}
|
2020-10-02 06:53:08 -07:00
|
|
|
};
|
2020-06-16 05:48:30 -07:00
|
|
|
|
2020-10-02 06:53:08 -07:00
|
|
|
pub fn main() !void {
|
|
|
|
const display = wl.Display.connect(null) catch {
|
|
|
|
std.debug.warn("Unable to connect to Wayland server.\n", .{});
|
|
|
|
std.os.exit(1);
|
|
|
|
};
|
|
|
|
defer display.disconnect();
|
|
|
|
|
|
|
|
var context: Context = .{};
|
2020-06-16 08:06:24 -07:00
|
|
|
|
2020-10-02 06:53:08 -07:00
|
|
|
const registry = try display.getRegistry();
|
2021-04-14 15:28:39 -07:00
|
|
|
registry.setListener(*Context, registryListener, &context) catch unreachable;
|
2020-10-02 06:53:08 -07:00
|
|
|
_ = try display.roundtrip();
|
2020-06-16 08:06:24 -07:00
|
|
|
|
2020-10-02 06:53:08 -07:00
|
|
|
if (context.layout_manager == null) {
|
2021-04-14 15:28:39 -07:00
|
|
|
fatal("wayland compositor does not support river_layout_v1.\n", .{});
|
2020-10-02 06:53:08 -07:00
|
|
|
}
|
2021-04-14 15:28:39 -07:00
|
|
|
|
|
|
|
context.initialized = true;
|
2020-10-02 06:53:08 -07:00
|
|
|
|
2021-04-14 15:28:39 -07:00
|
|
|
var it = context.outputs.first;
|
|
|
|
while (it) |node| : (it = node.next) {
|
|
|
|
const output = &node.data;
|
2021-04-26 12:03:04 -07:00
|
|
|
try output.getLayout(&context);
|
2020-10-02 06:53:08 -07:00
|
|
|
}
|
2021-04-14 15:28:39 -07:00
|
|
|
|
|
|
|
while (true) _ = try display.dispatch();
|
2020-10-02 06:53:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn registryListener(registry: *wl.Registry, event: wl.Registry.Event, context: *Context) void {
|
|
|
|
switch (event) {
|
|
|
|
.global => |global| {
|
|
|
|
if (std.cstr.cmp(global.interface, river.LayoutManagerV1.getInterface().name) == 0) {
|
|
|
|
context.layout_manager = registry.bind(global.name, river.LayoutManagerV1, 1) catch return;
|
|
|
|
} else if (std.cstr.cmp(global.interface, wl.Output.getInterface().name) == 0) {
|
2021-04-14 15:28:39 -07:00
|
|
|
context.addOutput(registry, global.name) catch |err| fatal("failed to bind output: {}", .{err});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
.global_remove => |ev| {
|
|
|
|
var it = context.outputs.first;
|
|
|
|
while (it) |node| : (it = node.next) {
|
|
|
|
const output = &node.data;
|
|
|
|
if (output.name == ev.name) {
|
|
|
|
context.outputs.remove(node);
|
|
|
|
output.deinit();
|
|
|
|
gpa.destroy(node);
|
|
|
|
break;
|
|
|
|
}
|
2020-10-02 06:53:08 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2020-06-16 08:06:24 -07:00
|
|
|
}
|
2021-04-14 15:28:39 -07:00
|
|
|
|
|
|
|
fn fatal(comptime format: []const u8, args: anytype) noreturn {
|
|
|
|
std.log.err(format, args);
|
|
|
|
std.os.exit(1);
|
|
|
|
}
|