首页 > 编程语言 >引用C++程序,在DOS命令行打印彩色玫瑰花

引用C++程序,在DOS命令行打印彩色玫瑰花

时间:2023-10-25 15:00:26浏览次数:47  
标签:玫瑰花 return 0.0 float pos C++ vec2 vec3 DOS

  • python 代码:
from ctypes import *
import pygame
import random
import string
import time

if __name__ == '__main__':
    with open('log.txt','rb') as f:
        lines=f.readlines()
        count = 0
        for line in lines:
            time.sleep(0.2)
            print(str(line.strip()).split('b')[1].strip('\''))
            count = count + 1
            if count > 150:
                break
        f.close()

    pycall = CDLL("./LoveU.so",winmode=0)
    pycall.print0()
  • C代码:
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <windows.h>
 
using namespace std;
const int max_iterations = 128;
const float stop_threshold = 0.01f;
const float grad_step = 0.01f;
const float clip_far = 10.0f;
 
const float PI = 3.14159265359f;
const float PI2 = 6.28318530718f;
const float DEG_TO_RAD = PI / 180.0f;
 
typedef struct { float x, y; } vec2;
typedef struct { float x, y, z; } vec3;
typedef struct { float m[9]; } mat3;
 
const vec3 light_pos = { 20.0f, 50.0f, 20.0f };
 
float min(float a, float b) { return a < b ? a : b; }
float max(float a, float b) { return a > b ? a : b; }
float clamp(float f, float a, float b) { return max(min(f, b), a); }
vec2 make2(float x, float y) { vec2 r = { x, y }; return r; }
vec2 add2(vec2 a, vec2 b) { vec2 r = { a.x + b.x, a.y + b.y }; return r; }
vec2 sub2(vec2 a, vec2 b) { vec2 r = { a.x - b.x, a.y - b.y }; return r; }
float dot2(vec2 a, vec2 b) { return a.x * b.x + a.y * b.y; }
float length2(vec2 v) { return sqrt(dot2(v, v)); }
vec3 make3(float x, float y, float z) { vec3 r = { x, y, z }; return r; }
vec3 add3(vec3 a, vec3 b) { vec3 r = { a.x + b.x, a.y + b.y, a.z + b.z }; return r; }
vec3 sub3(vec3 a, vec3 b) { vec3 r = { a.x - b.x, a.y - b.y, a.z - b.z }; return r; }
vec3 mul3(vec3 a, vec3 b) { vec3 r = { a.x * b.x, a.y * b.y, a.z * b.z }; return r; }
vec3 scale3(vec3 v, float s) { vec3 r = { v.x * s, v.y * s, v.z * s }; return r; }
float dot3(vec3 a, vec3 b) { return a.x * b.x + a.y * b.y + a.z * b.z; }
float length3(vec3 v) { return sqrt(dot3(v, v)); }
vec3 normalize3(vec3 v) { return scale3(v, 1.0f / length3(v)); }
vec3 mul(mat3 m, vec3 v) {
    return make3(
        m.m[0] * v.x + m.m[3] * v.y + m.m[6] * v.z,
        m.m[1] * v.x + m.m[4] * v.y + m.m[7] * v.z,
        m.m[2] * v.x + m.m[5] * v.y + m.m[8] * v.z);
}
 
mat3 rotationXY(float x, float y) {
    vec2 c = { cos(x), cos(y) }, s = { sin(x), sin(y) };
    mat3 m = {
        c.y      , 0.0f, -s.y,
        s.y * s.x,  c.x,  c.y * s.x,
        s.y * c.x, -s.x,  c.y * c.x
    };
    return m;
} 
float opI(float d1, float d2) { return max(d1, d2); }
float opU(float d1, float d2) { return min(d1, d2); }
float opS(float d1, float d2) { return max(-d1, d2); }
 
float sdPetal(vec3 p, float s) {
    p = add3(mul3(p, make3(0.8f, 1.5f, 0.8f)), make3(0.1f, 0.0f, 0.0f));
    vec2 q = make2(length2(make2(p.x, p.z)), p.y);
 
    float lower = length2(q) - 1.0f;
    lower = opS(length2(q) - 0.97f, lower);
    lower = opI(lower, q.y);
 
    float upper = length2(sub2(q, make2(s, 0.0f))) + 1.0f - s;
    upper = opS(upper, length2(sub2(q, make2(s, 0.0f))) + 0.97f - s);
    upper = opI(upper, -q.y);
    upper = opI(upper, q.x - 2.0f);
 
    float region = length3(sub3(p, make3(1.0f, 0.0f, 0.0f))) - 1.0f;
    return opI(opU(upper, lower), region);
}
 
float map(vec3 p) {
    float d = 1000.0f, s = 2.0f;
    mat3 r = rotationXY(0.1f, PI2 * 0.618034f);
    r.m[0] *= 1.08f;  r.m[1] *= 1.08f;  r.m[2] *= 1.08f;
    r.m[3] *= 0.995f; r.m[4] *= 0.995f; r.m[5] *= 0.995f;
    r.m[6] *= 1.08f;  r.m[7] *= 1.08f;  r.m[8] *= 1.08f;
    for (int i = 0; i < 21; i++) {
        d = opU(d, sdPetal(p, s));
        p = mul(r, p);
        p = add3(p, make3(0.0, -0.02, 0.0));
        s *= 1.05f;
    }
    return d;
}
 
vec3 gradient(vec3 pos) {
    const vec3 dx = { grad_step, 0.0, 0.0 };
    const vec3 dy = { 0.0, grad_step, 0.0 };
    const vec3 dz = { 0.0, 0.0, grad_step };
    return normalize3(make3(
        map(add3(pos, dx)) - map(sub3(pos, dx)),
        map(add3(pos, dy)) - map(sub3(pos, dy)),
        map(add3(pos, dz)) - map(sub3(pos, dz))));
}
 
float ray_marching(vec3 origin, vec3 dir, float start, float end) {
    float depth = start;
    for (int i = 0; i < max_iterations; i++) {
        float dist = map(add3(origin, scale3(dir, depth)));
        if (dist < stop_threshold)
            return depth;
        depth += dist * 0.3;
        if (depth >= end)
            return end;
    }
    return end;
}
 
float shading(vec3 v, vec3 n, vec3 eye) {
    vec3 ev = normalize3(sub3(v, eye));
    vec3 vl = normalize3(sub3(light_pos, v));
    float diffuse = dot3(vl, n) * 0.5f + 0.5f;
    vec3 h = normalize3(sub3(vl, ev));
    float rim = pow(1.0f - max(-dot3(n, ev), 0.0f), 2.0f) * 0.15f;
    float ao = clamp(v.y * 0.5f + 0.5f, 0.0f, 1.0f);
    return (diffuse + rim) * ao;
}
 
vec3 ray_dir(float fov, vec2 pos) {
    vec3 r = { pos.x, pos.y, -tan((90.0f - fov * 0.5f) * DEG_TO_RAD) };
    return normalize3(r);
}
 
float f(vec2 fragCoord) {
    vec3 dir = ray_dir(45.0f, fragCoord);
    vec3 eye = { 0.0f, 0.0f, 4.5f };
    mat3 rot = rotationXY(-1.0f, 1.0f);
 
    dir = mul(rot, dir);
    eye = mul(rot, eye);
 
    float depth = ray_marching(eye, dir, 0.0f, clip_far);
    vec3 pos = add3(eye, scale3(dir, depth));
    if (depth >= clip_far)
        return 0.0f;
    else
        return shading(pos, gradient(pos), eye);
}
 
extern "C"{
    int print0() { 
        //rose 打印玫瑰花
        for (int y = 0; y < 80; y++) {
            for (int x = 0; x < 160; x++) {
                putchar("  .,-:;+=*#@"[(int)(f(make2((x / 160.0f - 0.5f) * 2.0f, (y / 80.0f - 0.5f) * -2.0f)) * 12.0f)]);
            }
            if (y < 73)
            {
                putchar('\n');
            }   
   
        }
        
        //heart 打印心形
        // float a,b,c;
        // for(b=1.5; b>-1.5; b-=0.1)
        // {
        //     for(a=-1.5; a<1.5;a+=0.05)
        //     {
        //         c=a*a+b*b-1;
        //         putchar(c*c*c - a*a*b*b*b <= 0.0 ? '*' : ' ');
        //     }
        //     // system('color fc');
        //     putchar('\n');
        // }

       //控制台颜色变化
        string colors[] = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"};
        int x = 0;
        while(true) {
            string c_color = "color 0" + colors[x % 16];
            Sleep(100);
            system(c_color.c_str());
            x++;
        }
    }
} 

int main(){
    print0();
    return 0;
}
 
  • 编译C++代码到.so文件:

g++ -o LoveU.so -shared -fPIC LoveU.cpp

  • tips:

使用windows g++时,要使用64位的,否则生成32位的.so不能运行

标签:玫瑰花,return,0.0,float,pos,C++,vec2,vec3,DOS
From: https://www.cnblogs.com/feifeidxl/p/17787221.html

相关文章

  • 【踩坑】/usr/bin/ld: cannot find -lstdc++: No such file or directory
    环境:win10中的wsl2的Ubuntu1.报错/usr/bin/ld:cannotfind-lstdc++:Nosuchfileordirectory通过sudoapt-getinstalllibstdc++6解决。2.安装完之后依旧还是报一样的错参考资料通过gcc-lstdc++--verbose检查。输出了一大堆东西,但在末尾还是有/usr/b......
  • C++封装数据结构
    1.概论C++STL之所以得到广泛的赞誉,也被很多人使用,不只是提供了像vector,string,list等方便的容器,更重要的是STL封装了许多复杂的数据结构算法和大量常用数据结构操作。vector封装数组,list封装了链表,map和set封装了二叉树等,在封装这些数据结构的时候,STL按照程序员的使用习惯,以......
  • bilibili B站:makefile 编译Linux C/C++项目快速入门
    视频摘自:https://www.bilibili.com/video/BV1vg41177zT    ......
  • bilibili B站:[C++基础补充] C++标准库速览
    视频摘自:https://www.bilibili.com/video/BV1ju411J7fC笔记摘自:https://gitee.com/yanmu_ym/cpp......
  • C++--变量作用域
    C++--变量作用域作用域是程序的一个区域,一般来说,有三个地方可以声明变量:在函数或一个代码块内部声明的变量,称为局部变量在函数参数的定义中声明的变量,称为形式参数在所有函数外部声明的变量,称为全局变量局部变量在函数或一个代码块{}内部声明的变量,称为局部变量。它们只能......
  • C++条件分支语句之if语句
    程序设计语句结构可以分为三大类:顺序结构、分支结构、循环结构。分支结构,就是程序运行到这里,会通过条件判断,满足某个条件就执行对应的分支。if条件分支结构分为:单分支、双分支、多分支单分支if(条件){ 满足条件执行的语句;}双分支if(条件){ 满足条件执行的语句;}else{ ......
  • C++ 数据类型
    C++数据类型目录C++数据类型基本的内置类型类型修饰符基本数据类型void类型和指针型(*)typedef声明定义常量#define预处理器typedef和#define区别null参考资料基本的内置类型C++为程序员提供了种类丰富的内置数据类型和用户自定义的数据类型。下表列出了七种基本的C++数......
  • vscode C++相关配置
    vscodeC++相关配置目录vscodeC++相关配置安装vscode下载C++编译环境安装编译器环境配置验证配置vscode配置文件launch.json配置tasks.json配置安装vscode官网地址:https://code.visualstudio.com/?wt.mc_id=DX_841432下载C++编译环境C/C++的编译器有很多种,大家可自行选择,这......
  • C++数组
    c++数组目录c++数组一维数组声明和初始化访问数组中元素修改数组数据遍历数组多维数组定义和初始化嵌套循环遍历指针数组动态数组参考资料数组是用来存储相同类型的变量的顺序集合。所有的数组都是由连续的内存位置组成。最低的地址对应第一个元素,最高的地址对应最后一个元素。......
  • C++ char String
    C++charstring目录C++charstring字符char字符数组遍历基本函数字符比较char*、char[]转换为string字符串String类1.声明和初始化2.string的大小和容量3.拼接append()&+操作符4.插入push_back()&insert()5.string字符串遍历6.string删除erase()7.string查找与替换7.排序字......