diff --git a/.gitignore b/.gitignore
index 96ef2e499f..26094c130e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,9 +15,7 @@
*.code-workspace
# Veloren
-**/server_conf.toml
-**/keybinds.toml
-**/settings.toml
-assets/voxygen
+voxygen/keybinds.toml
+settings.toml
*.rar
-
+*.log
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4ad2f13bc9..bcae78f795 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,12 +10,14 @@ variables:
GIT_STRATEGY: none
before_script:
- mkdir -p /cache/veloren
+ - rm -rf /cache/veloren/bin
- cd /cache/veloren
- if [ -d .git ]; then
echo "is git dir";
else
git clone $CI_REPOSITORY_URL . ;
fi;
+ - mkdir -p /cache/veloren/bin
- rm -f .git/index.lock
- rm -f .git/shallow.lock
- rm -f .git/HEAD.lock
@@ -28,7 +30,7 @@ before_script:
git pull "https://gitlab.com/${SOURCE_PROJECT}/veloren.git" "${SOURCE_BRANCH}";
fi;
- git submodule sync --recursive
- - git submodule update --remote --recursive
+ - git submodule update --init --recursive --depth 20
- git status
- if [ -d target ]; then
ls -la target;
@@ -42,7 +44,7 @@ build-voxygen:
stage: build
image: registry.gitlab.com/veloren/veloren-docker-ci
tags:
- - docker
+ - veloren-docker
script:
- (cd voxygen && cargo build)
@@ -50,7 +52,7 @@ build-server-cli:
stage: build
image: registry.gitlab.com/veloren/veloren-docker-ci
tags:
- - docker
+ - veloren-docker
script:
- (cd server-cli && cargo build)
@@ -62,7 +64,7 @@ unittests:
stage: test
image: registry.gitlab.com/veloren/veloren-docker-ci
tags:
- - docker
+ - veloren-docker
script:
- cargo test
@@ -70,7 +72,7 @@ benchmarktests:
stage: test
image: registry.gitlab.com/veloren/veloren-docker-ci
tags:
- - docker
+ - veloren-docker
script:
- cargo bench
allow_failure: true
@@ -84,25 +86,27 @@ clean-code:
stage: post-build
image: registry.gitlab.com/veloren/veloren-docker-ci
tags:
- - docker
+ - veloren-docker
script:
- cargo fmt --all -- --check
allow_failure: true
-coverage:
- stage: post-build
- image: registry.gitlab.com/veloren/veloren-docker-ci
- tags:
- - docker
- script:
- - cargo tarpaulin --skip-clean --all || echo "There is a problem in tarpaulin which sometimes fails"
- allow_failure: true
+# # Coverage needs to be disabled until an issue in the Rust compiler is fixed
+# # https://github.com/rust-lang/rust/issues/58375
+# coverage:
+# stage: post-build
+# image: registry.gitlab.com/veloren/veloren-docker-ci
+# tags:
+# - veloren-docker
+# script:
+# - cargo tarpaulin --all
+# allow_failure: true
clippy:
stage: post-build
image: registry.gitlab.com/veloren/veloren-docker-ci
tags:
- - docker
+ - veloren-docker
script:
- cargo clippy --all -- -D clippy || echo "This job is disabled, because we are not activly using it now, so we dont want to see yellow failed partly"
allow_failure: true
@@ -115,7 +119,7 @@ commit-linux-debug:
stage: executable
image: registry.gitlab.com/veloren/veloren-docker-ci
tags:
- - docker
+ - veloren-docker
script:
- (cd voxygen && VELOREN_ASSETS=assets cargo build)
- (cd server-cli && VELOREN_ASSETS=assets cargo build)
@@ -125,9 +129,8 @@ commit-linux-debug:
- cp target/debug/veloren-voxygen commit-build
- cp -r assets commit-build/
- cp -r voxygen/shaders commit-build/
- - rm -f commit-linux-debug.tar.bz2
- - tar -cvjSf commit-linux-debug.tar.bz2 commit-build
- - cp commit-linux-debug.tar.bz2 $CI_PROJECT_DIR
+ - tar -cvjSf bin/commit-linux-debug.tar.bz2 commit-build
+ - cp bin/commit-linux-debug.tar.bz2 $CI_PROJECT_DIR
artifacts:
paths:
- commit-linux-debug.tar.bz2
@@ -137,13 +140,12 @@ commit-linux-debug:
only:
refs:
- master
- - add-docker-gitlab-ci
commit-windows-debug:
stage: executable
image: registry.gitlab.com/veloren/veloren-docker-ci
tags:
- - docker
+ - veloren-docker
script:
- (cd voxygen && VELOREN_ASSETS=assets cargo build --target=x86_64-pc-windows-gnu)
- (cd server-cli && VELOREN_ASSETS=assets cargo build --target=x86_64-pc-windows-gnu)
@@ -153,9 +155,8 @@ commit-windows-debug:
- cp target/x86_64-pc-windows-gnu/debug/veloren-voxygen.exe commit-build
- cp -r assets commit-build/
- cp -r voxygen/shaders commit-build/
- - rm -f commit-windows-debug.zip
- - zip -r commit-windows-debug.zip commit-build
- - cp commit-windows-debug.zip $CI_PROJECT_DIR
+ - zip -r bin/commit-windows-debug.zip commit-build
+ - cp bin/commit-windows-debug.zip $CI_PROJECT_DIR
artifacts:
paths:
- commit-windows-debug.zip
@@ -165,7 +166,6 @@ commit-windows-debug:
only:
refs:
- master
- - add-docker-gitlab-ci
#############
# NIGHTLY
@@ -175,7 +175,7 @@ nightly-linux-optimized:
stage: executable
image: registry.gitlab.com/veloren/veloren-docker-ci
tags:
- - docker
+ - veloren-docker
script:
- (cd voxygen && VELOREN_ASSETS=assets cargo build --release)
- (cd server-cli && VELOREN_ASSETS=assets cargo build --release)
@@ -185,9 +185,8 @@ nightly-linux-optimized:
- cp target/release/veloren-voxygen nightly-build
- cp -r assets nightly-build/
- cp -r voxygen/shaders nightly-build/
- - rm -f nightly-linux-optimized.tar.bz2
- - tar -cvjSf nightly-linux-optimized.tar.bz2 nightly-build
- - cp nightly-linux-optimized.zip $CI_PROJECT_DIR
+ - tar -cvjSf bin/nightly-linux-optimized.tar.bz2 nightly-build
+ - cp bin/nightly-linux-optimized.tar.bz2 $CI_PROJECT_DIR
artifacts:
paths:
- nightly-linux-optimized.tar.bz2
@@ -199,7 +198,7 @@ nightly-windows-optimized:
stage: executable
image: registry.gitlab.com/veloren/veloren-docker-ci
tags:
- - docker
+ - veloren-docker
script:
- (cd voxygen && VELOREN_ASSETS=assets cargo build --release --target=x86_64-pc-windows-gnu)
- (cd server-cli && VELOREN_ASSETS=assets cargo build --release --target=x86_64-pc-windows-gnu)
@@ -209,9 +208,8 @@ nightly-windows-optimized:
- cp target/x86_64-pc-windows-gnu/release/veloren-voxygen.exe nightly-build
- cp -r assets nightly-build/
- cp -r voxygen/shaders nightly-build/
- - rm -f nightly-windows-optimized.zip
- - zip -r nightly-windows-optimized.zip nightly-build
- - cp nightly-windows-optimized.zip $CI_PROJECT_DIR
+ - zip -r bin/nightly-windows-optimized.zip nightly-build
+ - cp bin/nightly-windows-optimized.zip $CI_PROJECT_DIR
artifacts:
paths:
- nightly-windows-optimized.zip
diff --git a/.gitmodules b/.gitmodules
index 8bc3550784..64ed06aa47 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,4 +1,4 @@
[submodule "assets/voxygen"]
path = assets/voxygen
- url = https://gitlab.com/veloren/fresh-assets/voxygen.git
+ url = ../../veloren/fresh-assets/voxygen.git
shallow = true
diff --git a/README.md b/README.md
index 423cd911da..c5e57ee841 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,11 @@
{
+ let ao_scale = 1.0;
+ let dark = col * (1.0 - ao_scale);
+
+ if ao[0] + ao[2] < ao[1] + ao[3] {
+ Quad::new(
+ vcons(origin + unit_y, norm, Rgb::lerp(dark, col, ao[3])),
+ vcons(origin, norm, Rgb::lerp(dark, col, ao[0])),
+ vcons(origin + unit_x, norm, Rgb::lerp(dark, col, ao[1])),
+ vcons(origin + unit_x + unit_y, norm, Rgb::lerp(dark, col, ao[2])),
+ )
+ } else {
+ Quad::new(
+ vcons(origin, norm, Rgb::lerp(dark, col, ao[0])),
+ vcons(origin + unit_x, norm, Rgb::lerp(dark, col, ao[1])),
+ vcons(origin + unit_x + unit_y, norm, Rgb::lerp(dark, col, ao[2])),
+ vcons(origin + unit_y, norm, Rgb::lerp(dark, col, ao[3])),
+ )
+ }
+}
+
+pub fn push_vox_verts<
+ V: ReadVol,
+ P: Pipeline,
+ F: Fn(Vec3 ,
+ vol: &V,
+ pos: Vec3 {
- pub fn new(
- a: P::Vertex,
- b: P::Vertex,
- c: P::Vertex,
- ) -> Self {
+ pub fn new(a: P::Vertex, b: P::Vertex, c: P::Vertex) -> Self {
Self { a, b, c }
}
}
@@ -93,12 +89,7 @@ pub struct Quad {
- pub fn new(
- a: P::Vertex,
- b: P::Vertex,
- c: P::Vertex,
- d: P::Vertex,
- ) -> Self {
+ pub fn new(a: P::Vertex, b: P::Vertex, c: P::Vertex, d: P::Vertex) -> Self {
Self { a, b, c, d }
}
}
diff --git a/voxygen/src/render/mod.rs b/voxygen/src/render/mod.rs
index 17edd052a4..a8cd2936c7 100644
--- a/voxygen/src/render/mod.rs
+++ b/voxygen/src/render/mod.rs
@@ -9,33 +9,19 @@ mod util;
// Reexports
pub use self::{
consts::Consts,
- mesh::{Mesh, Tri, Quad},
+ mesh::{Mesh, Quad, Tri},
model::Model,
- texture::Texture,
- renderer::{Renderer, TgtColorFmt, TgtDepthFmt},
pipelines::{
- Globals,
- figure::{
- FigurePipeline,
- Locals as FigureLocals,
- BoneData as FigureBoneData,
- },
- skybox::{
- create_mesh as create_skybox_mesh,
- SkyboxPipeline,
- Locals as SkyboxLocals,
- },
- terrain::{
- TerrainPipeline,
- Locals as TerrainLocals,
- },
+ figure::{BoneData as FigureBoneData, FigurePipeline, Locals as FigureLocals},
+ skybox::{create_mesh as create_skybox_mesh, Locals as SkyboxLocals, SkyboxPipeline},
+ terrain::{Locals as TerrainLocals, TerrainPipeline},
ui::{
- create_quad as create_ui_quad,
- create_tri as create_ui_tri,
- Mode as UiMode,
- UiPipeline,
+ create_quad as create_ui_quad, create_tri as create_ui_tri, Mode as UiMode, UiPipeline,
},
+ Globals,
},
+ renderer::{Renderer, TgtColorFmt, TgtDepthFmt},
+ texture::Texture,
};
#[cfg(feature = "gl")]
@@ -64,8 +50,5 @@ pub enum RenderError {
/// - `SkyboxPipeline`
/// - `FigurePipeline`
pub trait Pipeline {
- type Vertex:
- Clone +
- gfx::traits::Pod +
- gfx::pso::buffer::Structure {
- pub fn new(
- factory: &mut gfx_backend::Factory,
- mesh: &Mesh ,
- ) -> Self {
+ pub fn new(factory: &mut gfx_backend::Factory, mesh: &Mesh ) -> Self {
Self {
vbuf: factory.create_vertex_buffer(mesh.vertices()),
slice: gfx::Slice {
diff --git a/voxygen/src/render/pipelines/figure.rs b/voxygen/src/render/pipelines/figure.rs
index 92d9d20480..e7fc4436bb 100644
--- a/voxygen/src/render/pipelines/figure.rs
+++ b/voxygen/src/render/pipelines/figure.rs
@@ -1,25 +1,20 @@
// Library
use gfx::{
self,
+ gfx_constant_struct_meta,
// Macros
gfx_defines,
- gfx_vertex_struct_meta,
- gfx_constant_struct_meta,
gfx_impl_struct_meta,
gfx_pipeline,
gfx_pipeline_inner,
+ gfx_vertex_struct_meta,
};
use vek::*;
// Local
use super::{
+ super::{util::arr_to_mat, Pipeline, TgtColorFmt, TgtDepthFmt},
Globals,
- super::{
- Pipeline,
- TgtColorFmt,
- TgtDepthFmt,
- util::arr_to_mat,
- },
};
gfx_defines! {
diff --git a/voxygen/src/render/pipelines/mod.rs b/voxygen/src/render/pipelines/mod.rs
index 6de0d417ef..2b4b8ba7d9 100644
--- a/voxygen/src/render/pipelines/mod.rs
+++ b/voxygen/src/render/pipelines/mod.rs
@@ -6,9 +6,9 @@ pub mod ui;
// Library
use gfx::{
self,
+ gfx_constant_struct_meta,
// Macros
gfx_defines,
- gfx_constant_struct_meta,
gfx_impl_struct_meta,
};
use vek::*;
diff --git a/voxygen/src/render/pipelines/skybox.rs b/voxygen/src/render/pipelines/skybox.rs
index 25e94dab0b..55ad42ecdd 100644
--- a/voxygen/src/render/pipelines/skybox.rs
+++ b/voxygen/src/render/pipelines/skybox.rs
@@ -1,25 +1,19 @@
// Library
use gfx::{
self,
+ gfx_constant_struct_meta,
// Macros
gfx_defines,
- gfx_vertex_struct_meta,
- gfx_constant_struct_meta,
gfx_impl_struct_meta,
gfx_pipeline,
gfx_pipeline_inner,
+ gfx_vertex_struct_meta,
};
// Local
use super::{
+ super::{Mesh, Pipeline, Quad, TgtColorFmt, TgtDepthFmt},
Globals,
- super::{
- Pipeline,
- TgtColorFmt,
- TgtDepthFmt,
- Mesh,
- Quad,
- },
};
gfx_defines! {
diff --git a/voxygen/src/render/pipelines/terrain.rs b/voxygen/src/render/pipelines/terrain.rs
index dd1e7bcf74..e687afa18c 100644
--- a/voxygen/src/render/pipelines/terrain.rs
+++ b/voxygen/src/render/pipelines/terrain.rs
@@ -1,24 +1,20 @@
// Library
use gfx::{
self,
+ gfx_constant_struct_meta,
// Macros
gfx_defines,
- gfx_vertex_struct_meta,
- gfx_constant_struct_meta,
gfx_impl_struct_meta,
gfx_pipeline,
gfx_pipeline_inner,
+ gfx_vertex_struct_meta,
};
use vek::*;
// Local
use super::{
+ super::{Pipeline, TgtColorFmt, TgtDepthFmt},
Globals,
- super::{
- Pipeline,
- TgtColorFmt,
- TgtDepthFmt,
- },
};
gfx_defines! {
diff --git a/voxygen/src/render/pipelines/ui.rs b/voxygen/src/render/pipelines/ui.rs
index 0c2147c667..54bde26431 100644
--- a/voxygen/src/render/pipelines/ui.rs
+++ b/voxygen/src/render/pipelines/ui.rs
@@ -1,20 +1,14 @@
+use super::super::{Pipeline, Quad, TgtColorFmt, TgtDepthFmt, Tri};
use gfx::{
self,
// Macros
gfx_defines,
- gfx_vertex_struct_meta,
gfx_impl_struct_meta,
gfx_pipeline,
gfx_pipeline_inner,
+ gfx_vertex_struct_meta,
};
use vek::*;
-use super::super::{
- Pipeline,
- TgtColorFmt,
- TgtDepthFmt,
- Quad,
- Tri,
-};
gfx_defines! {
vertex Vertex {
@@ -65,20 +59,20 @@ impl Mode {
}
}
-pub fn create_quad(rect: Aabr ) -> Result ,
offset: [u16; 2],
size: [u16; 2],
- data: &[[u8; 4]]
+ data: &[[u8; 4]],
) -> Result<(), RenderError> {
- texture.update(
- &mut self.encoder,
- offset,
- size,
- data,
- )
+ texture.update(&mut self.encoder, offset, size, data)
}
/// Queue the rendering of the provided skybox model in the upcoming frame.
@@ -273,7 +254,12 @@ impl Renderer {
&self.ui_pipeline.pso,
&ui::pipe::Data {
vbuf: model.vbuf.clone(),
- scissor: gfx::Rect { x: min.x, y: min.y, w: max.x - min.x, h: max.y - min.y },
+ scissor: gfx::Rect {
+ x: min.x,
+ y: min.y,
+ w: max.x - min.x,
+ h: max.y - min.y,
+ },
tex: (tex.srv.clone(), tex.sampler.clone()),
tgt_color: self.tgt_color_view.clone(),
tgt_depth: self.tgt_depth_view.clone(),
@@ -298,7 +284,8 @@ fn create_pipeline<'a, P: gfx::pso::PipelineInit>(
.map_err(|err| RenderError::PipelineError(gfx::PipelineStateError::Program(err)))?;
Ok(GfxPipeline {
- pso: factory.create_pipeline_from_program(
+ pso: factory
+ .create_pipeline_from_program(
&program,
gfx::Primitive::TriangleList,
gfx::state::Rasterizer {
@@ -310,14 +297,17 @@ fn create_pipeline<'a, P: gfx::pso::PipelineInit>(
},
pipe,
)
- // Do some funky things to work around an oddity in gfx's error ownership rules
- .map_err(|err| RenderError::PipelineError(match err {
- gfx::PipelineStateError::Program(err) =>
- gfx::PipelineStateError::Program(err),
- gfx::PipelineStateError::DescriptorInit(err) =>
- gfx::PipelineStateError::DescriptorInit(err.into()),
- gfx::PipelineStateError::DeviceCreate(err) =>
- gfx::PipelineStateError::DeviceCreate(err),
- }))?,
+ // Do some funky things to work around an oddity in gfx's error ownership rules
+ .map_err(|err| {
+ RenderError::PipelineError(match err {
+ gfx::PipelineStateError::Program(err) => gfx::PipelineStateError::Program(err),
+ gfx::PipelineStateError::DescriptorInit(err) => {
+ gfx::PipelineStateError::DescriptorInit(err.into())
+ }
+ gfx::PipelineStateError::DeviceCreate(err) => {
+ gfx::PipelineStateError::DeviceCreate(err)
+ }
+ })
+ })?,
})
}
diff --git a/voxygen/src/render/texture.rs b/voxygen/src/render/texture.rs
index d9d166dd4c..1dacef8c29 100644
--- a/voxygen/src/render/texture.rs
+++ b/voxygen/src/render/texture.rs
@@ -2,29 +2,25 @@
use std::marker::PhantomData;
// Library
-use gfx::{
- self,
- traits::Factory,
-};
-use image::{
- DynamicImage,
- GenericImageView,
-};
+use gfx::{self, traits::Factory};
+use image::{DynamicImage, GenericImageView};
use vek::Vec2;
// Local
-use super::{
- RenderError,
- Pipeline,
- gfx_backend,
-};
+use super::{gfx_backend, Pipeline, RenderError};
type ShaderFormat = (gfx::format::R8_G8_B8_A8, gfx::format::Srgb);
/// Represents an image that has been uploaded to the GPU.
pub struct Texture ,
}
@@ -34,15 +30,16 @@ impl {
factory: &mut gfx_backend::Factory,
image: &DynamicImage,
) -> Result {
)
.map_err(|err| RenderError::CombinedError(gfx::CombinedError::Texture(err)))?;
- let srv =
- factory.view_texture_as_shader_resource:: {
mipmap: 0,
};
encoder
- .update_texture::<