Skip to content

Commit 1cc9b65

Browse files
update project
1 parent 63bccff commit 1cc9b65

19 files changed

+297
-685
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
*.depend
22
*.layout
33
*.cbp
4+
lib_finder.script
45
obj/
56
bin/
6-
lib_finder.script
7+
Bin/
8+
Build/
9+
stuff/

LICENSE.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) <2018> <Gavin Lyons>
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

Makefile

100755100644
+90-24
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,92 @@
1-
# --- constants
1+
#==============================
2+
# Gavin Lyons 12-2023
3+
# Make file to build Fractal Creator Program
4+
# URL:: https://github.com/gavinlyonsrepo/Fractal_creator
5+
# Run make help for options
6+
#==============================
7+
8+
SRC=src/
29
CC=g++
3-
CFLAGS=-Wall -g -c
4-
LDFLAGS=-Wall -g -L /usr/lib/x86_64-linux-gnu
5-
SOURCES = $(wildcard ./src/*.cpp)
6-
OBJECTS = $(SOURCES:.cpp=.o)
7-
BIN=./bin
8-
INCLUDES=./include
9-
TARGET=$(BIN)/fcsim
10-
11-
12-
# --- Target of build process
13-
all: $(TARGET) clean
14-
15-
$(TARGET): $(OBJECTS)
16-
$(CC) -o $(TARGET) $(OBJECTS) $(LDFLAGS)
17-
18-
# Make an .o from a .cpp
19-
%.o: %.cpp
20-
$(CC) $(CFLAGS) -o $@ -c $< -iquote $(INCLUDES)
21-
22-
23-
# --- Cleanup
24-
#.PHONY: clean
10+
LDFLAGS= -L /usr/lib/x86_64-linux-gnu
11+
CFLAGS = -std=c++2a -Iinclude/ -c -Wall -Wextra
12+
MD=mkdir
13+
BUILD=Build
14+
SRCS = $(wildcard $(SRC)/*.cpp)
15+
OBJS = $(patsubst $(SRC)/%.cpp, $(BUILD)/%.o, $(SRCS))
16+
BIN=./Bin
17+
EXENAME=fcsim
18+
TARGET=$(BIN)/$(EXENAME)
19+
PREFIX=/usr/local/bin
20+
21+
# The --no-print-directory option of make tells make not to print the message about entering
22+
# and leaving the working directory.
23+
MAKEFLAGS += --no-print-directory
24+
25+
# Main task, makes build directory, updates your objects, builds your executable
26+
.PHONY: all
27+
all: clean build
28+
29+
30+
# Task producing target from built files
31+
$(TARGET): $(OBJS) $(BUILD)
32+
@echo 'MAKE EXE FILE'
33+
$(CXX) $(OBJS) -o $@ $(LDFLAGS)
34+
@echo '[DONE!]'
35+
36+
# Compile all cpp files
37+
$(BUILD)/%.o : $(SRC)/%.cpp $(BUILD)
38+
@echo 'MAKE OBJECT FILE'
39+
$(CXX) $(CFLAGS) $< -o $@
40+
41+
42+
# Build task
43+
.PHONY: build
44+
build:
45+
@echo
46+
@echo '[BUILDING:!]'
47+
@echo $(SRC)
48+
$(MD) -vp $(BIN)
49+
$(MD) -vp $(BUILD)
50+
$(MAKE) $(TARGET)
51+
@echo '***************'
52+
53+
# Run task
54+
.PHONY: run
55+
run:
56+
$(TARGET)
57+
58+
# Clean task :: removes obj and executbale
59+
.PHONY: clean
2560
clean:
26-
rm -vf $(OBJECTS)
61+
@echo
62+
@echo '[CLEANUP!]'
63+
rm -rvf $(BUILD) $(BIN)
64+
@echo '[DONE!]'
65+
66+
67+
# Help task :: explains the options
68+
.PHONY: help
69+
help:
70+
@echo '[HELP!]'
71+
@echo "make - Cleans + builds project"
72+
@echo "make clean - Cleans : Removes object file folder and executable"
73+
@echo "make build - Complies and Builds project"
74+
@echo "make run - Runs exe"
75+
@echo "make install - Installs exe, may need sudo"
76+
@echo "make uninstall - Uninstalls exe, may need sudo"
77+
@echo "make help - Prints help message"
78+
@echo '***************'
79+
80+
#install exe
81+
.PHONY: install
82+
install:
83+
@echo "[INSTALL EXE]"
84+
cp -v $(TARGET) $(PREFIX)/$(EXENAME)
85+
@echo "*****************"
86+
87+
# Uninstall the exe
88+
.PHONY: uninstall
89+
uninstall:
90+
@echo "[UNINSTALL EXE]"
91+
@rm -vf $(PREFIX)/$(EXENAME)
92+
@echo "******************"

README.md

+26-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Overview
66

77
* Description:
88
Fractal Creator. This Demo program is written in C++.
9-
This project creates a bitmap file (800x600) and
9+
This project creates a bitmap file and
1010
then applies two magnification functions
1111
to a sector of that file. The bitmap is a graphic image.
1212
The graphic image is a fractal created by the Mandelbrot Set.
@@ -15,23 +15,43 @@ and simulate naturally occurring objects. Fractals can also be nearly the
1515
same at different levels.
1616

1717
* Author: Gavin Lyons
18-
* Credits: www.caveofprogramming.com
18+
* Credits: Based on code from www.caveofprogramming.com
1919

2020
Installation
2121
-----------------------------------------------
2222
For local install on Linux based OS
2323

24-
* Download latest release
24+
* Download github directory
2525
* extract tarball
26-
* cd into same path as Makefile
27-
* run make
28-
* copy exe at .bin/fcsim to where you want it
26+
* 'cd' into same path as Makefile
27+
* run 'make' to build
28+
* Exe file made at ./Bin/fcsim
29+
* run 'make help' for all options.
30+
31+
Usage
32+
------------------------------------------
33+
34+
```
35+
fcsim [arguments]
36+
fcsim 800 600 0.1 2
37+
```
38+
Arguments list
39+
40+
| Number | Name | Default value | Notes |
41+
| -------- | ----------- | ----------- | ----------- |
42+
| 1 | width Resolution | 800 | width of bmp file |
43+
| 2 | height Resolution| 600 | height of bmp file |
44+
| 3 | zoom Scale | 0.1 | smaller the number higher the zoom |
45+
| 4 | number of Zooms | 0 | 0, 1 or 2|
2946

3047
Output
48+
3149
-------------------------------------
3250
Bitmap Output files are outputted to:-
3351
where RRRR is random number.
3452

3553
```sh
3654
/tmp/FractalRRRR.BMP
3755
```
56+
57+
![Ss](https://github.com/gavinlyonsrepo/Fractal_creator/blob/master/documentation/screenshots/Fractal_before_zoom.png)

0 commit comments

Comments
 (0)